

/* 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: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #feb900; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #feb900; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
 
 
}

a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color:#ff6d00;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Montserrat Underline", serif;

}

.montserrat-underline {
  font-family: "Montserrat Underline", serif;
  font-optical-sizing: auto;
 
  font-style: normal;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
 
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;

}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
 overflow: hidden;
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
 
  
}

.header .logo img {
  max-height: 52px;
  margin-right: 8px;
  max-width: 400px;
}



.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: #e06b1b;
  --heading-color: white;
  --nav-color: white;
  --nav-hover-color: #3c3c3c;
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    
    padding: 0 2px;
    font-family: 'Raleway' !important;
   
    font-size: 18px;
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
   
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

 
  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: white;
    font-weight: 800;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 50px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
   
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ff6d00;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: black;
 background-color: white;
  
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer .container-xl {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
 
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}


.footer .footer-about p {
  font-size: 14px;
 
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  margin-right: 30px;
  transition: 0.3s;
  color: black;
  margin-bottom: 20px;
}

.footer .social-links a:hover {
 
  border-color:#ff6d00;
}

/* Ensures the social icons stack vertically */
.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1500px) {
  .social-links {
    align-items:flex-start;
}
}
/* Style for each row of social icons */
.social-row {
  display: flex;
  justify-content: center;
  margin-bottom: 5px; /* Space between rows */
}

/* Style for the logo in the third row */
.footer .logo img {

  display: block;
  margin-top: 10px;
  max-height: 52px;
  max-width: 400px;
}


.footer h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Raleway';
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: black;
  display: inline-block;
  line-height: 1;
  font-family: 'Raleway'!important;
}
  

.footer .footer-links ul a:hover {
  color:#ff6d00;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-family: 'Raleway'!important;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}
@media (max-width: 500px) {
  .footer .footer-top {
    padding-top: 0px;
  }
  .footer .footer-links {
    margin-bottom: 0px;
  }
  
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #e06b1b transparent #e06b1b transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: visible;
  opacity: 0;
  right:67px;
  bottom: 15px;
  z-index: 99999;
  background-color:#e06b1b;
  width: 50px;
  height: 50px;
 
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 28px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #003b5d;
  color: white;
}

.scroll-top.active {
 
  opacity: 1;
}
@media (max-width: 1200px) {
  .scroll-top {
   
    right:20px;
}
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
 
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
 
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

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

.section-title h2 {
  font-size: 32px;
 
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero .info{
  margin-top: 200px;
}

.hero .info h1{
 font-size: 45px;
 
  font-family: "Montserrat Underline", serif;
  
  word-spacing: 10px;
  font-weight: 400;
  
  
  }
  #hero-title {
  
    font-size: 45px;
  }
@media (max-width: 1500px) {
  .hero .info{
    margin-top: 150px;
  }

    .hero .bottom-images {
     
        margin-bottom: 80px;
    }
    .bottom-images {
     
      width: 100%;
    }
}
  

 
@media (max-width: 800px) {
  .hero .info{
    margin-top: 160px;
  }
  .bottom-images {
    padding: 0px !important;
    width: 100% !important;
  }

#hero-title {
  
  font-size: 35px;
}

}

@media (max-width: 500px){
  .hero .info{
    margin-top: 10px !important;
  }
  #hero-title {
  
    font-size: 32px !important;
  }
} 


.hero .info .btn-get-started {
  color: var(--contrast-color);
  
  font-family: "Montserrat Underline", serif;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 0px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 20px 0px;
 
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-bottom: 50px; /* Space below for images */
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Fallback background color */


  /* Smooth transition for background image */
  transition: background-image 1s ease-in-out, background-color 0.5s ease-in-out;
}

/* Smooth transition for loading the image */
.hero img {
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Fade in the image when it loads */
}

.hero.loaded {
  opacity: 1; /* Fade in the image once it’s loaded */
}
#hero .info {
  display: flex;
  align-items: center;   /* Vertical alignment */
  justify-content: flex-start; /* Aligns content to the left horizontally */
  width: 100%;            /* Ensures it takes the full width of the parent */
  padding-left: 0;        /* Removes extra left padding */
  padding-right: 0;  
     /* Removes extra right padding */
}

#hero-title {
  text-align: left;  /* Ensures the title is aligned to the left */
  margin-left: 0; 
  margin-top: 200px; 
  line-height: 1.4;  /* Optional: Remove left margin if it's there */
}


#hero .row {
  width: 100%;  /* Ensure the row takes the full width */
}

#hero-link .bi-arrow-right {
  display: inline-block;
  width: 50px; /* Fixed width for the circle */
  height: 50px; /* Fixed height for the circle */
  border: 2px solid white; /* White border */
  border-radius: 50%; /* Makes it circular */
  color: white; /* Ensures the arrow is visible */
  font-size: 22px; /* Adjust the size of the arrow icon */
  transition: border-color 0.3s ease; /* Adds a transition for hover effect */
  margin-left: 10px;
  text-align: center; /* Centers the icon horizontally */
  line-height: 50px; /* Centers the icon vertically */
}


#hero-link .bi-arrow-right:hover {
  border-color: #f0f0f0; /* Changes the border color on hover */
}



/* Bottom Images Section */

.bottom-images {
  display: flex;
  justify-content: space-between;
  margin-top:20px;
  padding: 80px 70px;
  gap: 2px; /* Add space between each image container */
  width: 75%;
}
 



/* Individual Image Container */
.image-container {
  position: relative;
  width: 400px; /* Adjust width as needed */
 
  text-align: center;
  
}

@media (min-width: 700px) {
  .bottom-images .image-container {
      max-width: 1500px;
  }
}
@media (min-width: 1500px) {
  .bottom-images {
    display: flex;
    justify-content: space-between;
    margin-top:20px;
    padding: 80px 70px;
    gap: 2px; /* Add space between each image container */
    width: 75%;
  }
}
@media (max-width: 500px) {
  .bottom-images{
    display: none;
  }
}



/* Image Styling */
.image-container img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better image presentation */
  opacity: 0; /* Initially hide the images */
  transition: opacity 0.5s ease-in-out; /* Add transition for fade-in effect */
  pointer-events: none; /* Ensure image doesn't block hover effect */
 
}
/* Hover effect */
.image-container:hover .text-above {
  opacity: 1;
  transform: translateX(-50%) translateY(-30px); /* Move the text above the image */
  font-family: "Montserrat Underline", serif;
  font-weight: 200;
  left: 50%;
  transform: translateX(-50%);
 
}

.image-container:hover .bottom-line {
  opacity: 1;
}
/* Text above the image (initially below the image) */
.text-above {
  position: absolute;
  bottom: 0px; /* Start the text below the image */
 left: 25%;
  font-size: 19px;
  color: #fff;
  opacity: 1; /* Text is visible initially */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
  transform: translateX(-50%) translateY(-30px); /* Move the text above the image */
  font-family: "Montserrat Underline", serif;
  font-weight: 200;
}

/* Hover effect to reveal the bottom line and fade in the image */
.image-container:hover .bottom-line {
  width: 100%; /* Expand the bottom line on hover */
  animation: expandLine 3s ease-in-out forwards;
   
}
@keyframes expandLine {
  0% {
      width: 0; /* Start with no width */
  }
  50% {
      width: 50%; /* Expand halfway */
  }
  100% {
      width: 100%; /* Expand to full width */
  }
}

.image-container:hover img {
  opacity: 1; /* Fade-in the image when hovered */
}
/* Optional: Add animation to fade in the images and lines */
@keyframes fadeInBottomLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.image-container .bottom-line {
  animation: fadeInBottomLine 0.8s forwards;
}

.image-container .bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%; /* Initially hidden */
  height: 5px;
  background: linear-gradient(30deg, #003b5d, #ff6d00);  /* Default gray color */
  visibility: visible;
  transition: width 1s ease-in-out; /* Smooth transition for width */
}

/* Slow linear gradient movement for the active bottom line */
.image-container.active .bottom-line {
  width: 100%; /* Expand the line to full width */
  background: linear-gradient(10deg, #003b5d, #ff6d00); /* Diagonal gradient from blue to light blue */
  background-size: 200% 200%; /* Set the gradient to be larger than the element */
  animation: moveGradient 1s linear forwards; /* Slow gradient movement */
}

/* Keyframes to slowly move the gradient from left to right */
@keyframes moveGradient {
  0% {
    background-position: -100% 0%; /* Start from the left */
  }
  100% {
    background-position: 100% 100%; /* End at the right */
  }
}

/* Hover effect to reveal the bottom line and fade in the image */
.image-container:hover .text-above {
  bottom: 100%; /* Move the text above the image */
  opacity: 1; /* Keep the text visible when hovering */
  transform: translateX(-50%) translateY(-10px); /* Optional additional upward movement */
}

.image-container:hover .bottom-line {
  opacity: 1; /* Show the bottom line when hovering */
}



/* Buttons container - wrap all buttons */
.buttons-container {
  position: fixed;
  top: 50%;
  left: 95%;
  transform: translate(-50%, -50%); /* Center the container */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:end;
  z-index: 10; /* Ensure it's above other content */
  opacity: 0;
  visibility: hidden;

}

/* Call and WhatsApp Buttons */
.call-button, .whatsapp-button, .close-btn {
  width: 60px;  /* Square background */
  height: 60px; /* Square background */
  font-size: 30px;
  background-color: #003b5f;
  transition: opacity 0.5s ease;
  opacity: 0;
  margin: 10px; /* Space between buttons */
  color: white;
  display: flex;
  justify-content: center;
  align-items:center;
}

/* Show buttons when they are in view */
.call-button.show-buttons, .whatsapp-button.show-buttons, .close-btn.show-buttons {
  opacity: 1;
  visibility: visible;
}

/* Close button styles */
.close-btn {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  display: none; /* Initially hidden */
  display: flex;
  justify-content: center;
  align-items:center;
}

/* Show the close button when buttons are visible */
.call-button.show-buttons ~ .close-btn,
.whatsapp-button.show-buttons ~ .close-btn {
  display: block;
}

/* Button Slide Animation from Right */
@keyframes slideInRight {
  0% {
      opacity: 0;
      transform: translateX(100%); /* Start from right */
  }
  100% {
      opacity: 1;
      transform: translateX(0); /* End at center */
  }
}

/* Apply the animation */
.call-button, .whatsapp-button, .close-btn {
  animation: slideInRight 4s ease-out forwards;
}

/* Default state */
.buttons-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Show buttons container */
.buttons-container.show {
  opacity: 1;
  visibility: visible;
}

/* Hide buttons container when toggled */
.buttons-container.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Add transition for smooth hiding */
.buttons-container.hide .call-button,
.buttons-container.hide .whatsapp-button,
.buttons-container.hide .close-btn {
  transform: translateX(100%); /* Hide buttons to the right */
  opacity: 0;
}

@media (max-width: 767px) {
  .buttons-container {
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .buttons-container a {
      margin-bottom: 10px;
  }
}


/* Header Section */

/* Styling the header section */
.header-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section-header {
  font-size: 45px;
  color: #fe6d00;
  text-align: center;
  font-family: "Montserrat Underline", serif;
  font-weight: 300;
  
  
  
}

.section-paragraph {
  font-size: 27px;
  color: #003b5f;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Montserrat Underline", serif;
  font-weight: 300;
 
}

/* Image Row */
.header-section .image-row {
  display: flex;
  justify-content: center;
  gap: 120px;
}

/* Styling for each image container */
.header-section .image-container {
  position: relative;
  overflow: hidden; /* Ensures the overlay stays within image boundaries */
  width: 100%;  /* Ensure that the container takes up 100% width of its parent */
  max-width: 340px; /* Limit the width to a max value */
  height: 440px;  /* Set a fixed height to prevent distortion */
}

.header-section .image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures that the image covers the whole container without distortion */
  transition: transform 0.3s ease; /* Smooth zoom on hover */
  display: block; /* Ensures the image is displayed normally by default */
}

/* Overlay effect */
 .header-section .overlay {
  position: absolute;
  bottom: 26px;
  right: 0;
  left: 30px;
  opacity: 0; /* Initially hidden */
  visibility: visible; /* Ensure the overlay is not clickable until hover */
 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: 390px;
  width: 280px;
  opacity: 0.9;
  background-color: #e06b1b;
  clip-path: polygon(
    0 0, 
    calc(100% - 100px) 0, 
    100% 0, 
    100% 100%, 
    calc(100% - 220px) 100%, /* Adjusted the length of the cut */
    0 calc(100% - 80px)  /* Adjusted the length of the bottom-left cut */
  );
}


.overlay-content {
  color: white;
  text-align: center; /* Center the title text */
}
.overlay-content h3{
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 400; /* Regular weight */
  letter-spacing: 1px;
  font-size: 25px;
}

.overlay-content_read {
  position: absolute;
  bottom: 20px; /* Position it 20px from the bottom */
  right: 20px; /* Position it 20px from the right */
  font-family: "Montserrat Underline", serif;
  font-weight: 500;
  

}

.overlay-content_read .read-more {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.overlay-content_read .read-more a:hover{
  color:#003b5d;
}


.header-section  .read-more i {
  margin-left: 8px; /* Space between text and arrow */
  padding: 10px; /* Adds space around the icon */
  border: 2px solid white; /* White circular border */
  border-radius: 50%; /* Makes the border circular */
  color: white; /* Ensures the arrow is black for visibility (you can change this if needed) */
  font-size: 16px; /* Adjust the size of the arrow icon */
  transition: border-color 0.3s ease; /* Adds a transition for hover effect */
  margin-left: 30px;

 
 
}


.header-section  .image-container img{
  opacity: 1;
}
/* Hover effect: Zoom image and show overlay */
.header-section  .image-container:hover .image {
  transform: scale(1.05); /* Slight zoom effect on hover */
}


/* Responsive styles */
@media (max-width: 768px) {
  .section-header {
    font-size: 38px;
  }

  .section-paragraph {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .section-header {
    font-size: 32px;
  }

  .section-paragraph {
    font-size: 18px;
  }
}


/* Counter Section */

.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 80px 0;
  background-color: #f4f4f9;
}

.counter-item {
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 325px;
}


.counter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.counter-item:hover .icon {
  color: #ff9900;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  transition: transform 1s ease-in-out;
  
}

.description {
  font-size: 1rem;
  color: #777;
}

/* Bounce animation for the first counter */
.counter1.animate {
  animation: bounce 1s ease-out forwards;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Rotate animation for the second counter */
.counter2.animate {
  animation: rotate 1s ease-out forwards;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Color change and scaling for the third counter */
.counter3.animate {
  animation: scaleColorChange 2s ease-out forwards;
}

@keyframes scaleColorChange {
  0% {
    transform: scale(1);
    color: #333;
  }
  50% {
    transform: scale(1.3);
    color: #ff6347;
  }
  100% {
    transform: scale(1);
    color: #333;
  }
}

/* Fade in animation for the fourth counter */
.counter4.animate {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .counter-section {

    flex-direction: column;
    align-items: center;
  }

  .counter-item {
    margin-bottom: 30px;
    width: 90%;
  }
}

/* service box */

/* Box Section */
.box-section {
  width: 80%;                    /* Set width for the section */
  margin: 50px auto 0;              /* Center the section with top/bottom margin */
  text-align: center;             /* Center the text */
}
/* Make section visible once it reaches the viewport */
.box-section.visible {
  opacity: 1;
}
.section-heading {
  font-size: 45px;
  margin-bottom: 10px;
  color: #ff6d00;
  font-family: "Montserrat Underline", serif;
  font-weight: 300;
}

.section-description {

  margin-bottom: 60px;
  color: #114868;
  font-size: 27px;
  font-family: "Montserrat Underline", serif;
  font-weight: 300;
}

/* Square Row */
.square-row {
  display: flex;
  justify-content: space-between;  /* Space squares evenly */
  gap: 20px;                      /* Space between squares */
  margin-bottom: 40px;
}

/* Square Styling */
.square {
  position: relative;
  width: 400px;
  height: 290px;

  color: #fefeff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
 
  text-align: center;
}

/* Different Shapes */
.square-1 {
  background-color: #003b5d;
  clip-path: polygon(
    0 0, 
    calc(100% - 100px) 0, 
    100% 0, 
    100% 100%, 
    calc(100% - 300px) 100%, /* Adjusted the length of the cut */
    0 calc(100% - 80px)  /* Adjusted the length of the bottom-left cut */
  );
}


/* Optional: Use media queries to tweak further */
@media (max-width: 768px) {
    .square-1 {
        clip-path: polygon(0 0, calc(100% - 15vw) 0, 100% 0, 100% 100%, calc(100% - 20vw) 100%, 0 calc(100% - 10vh));
    }
}

@media (max-width: 480px) {
    .square-1 {
        clip-path: polygon(0 0, calc(100% - 20vw) 0, 100% 0, 100% 100%, calc(100% - 25vw) 100%, 0 calc(100% - 12vh));
    }
}


@media (max-width: 1500px) {
  .square-1 {
    background-color: #003b5d;
    clip-path: polygon(
      0 0, 
      calc(100% - 100px) 0, 
      100% 0, 
      100% 100%, 
      calc(100% - 290px) 100%, /* Adjusted the length of the cut */
      0 calc(100% - 100px)  /* Adjusted the length of the bottom-left cut */
    ) ;
  }
  }
  @media (max-width: 500px) and (min-width: 200px) {
    .square-1 {
      background-color: #003b5d;
      clip-path: polygon(
        0 0, 
        calc(100% - 100px) 0, 
        100% 0, 
        100% 100%, 
        calc(100% - 240px) 100%, /* Adjusted the length of the cut */
        0 calc(100% - 100px)  /* Adjusted the length of the bottom-left cut */
      ) ;
    }
    }

    @media (max-width: 450px) and (min-width: 200px) {
      .square-1 {
        background-color: #003b5d;
        clip-path: polygon(
          0 0, 
          calc(100% - 100px) 0, 
          100% 0, 
          100% 100%, 
          calc(100% - 170px) 100%, /* Adjusted the length of the cut */
          0 calc(100% - 100px)  /* Adjusted the length of the bottom-left cut */
        ) ;
      }
      }
   
  
      @media (max-width: 350px) and (min-width: 200px) {
        .square-1 {
          background-color: #003b5d;
          clip-path: polygon(
            0 0, 
            calc(100% - 100px) 0, 
            100% 0, 
            100% 100%, 
            calc(100% - 140px) 100%, /* Adjusted the length of the cut */
            0 calc(100% - 110px)  /* Adjusted the length of the bottom-left cut */
          ) ;
        }
        }

.square-2 {
  background-color: #003b5d;
  clip-path: polygon(
    calc(100px) 0, /* Top-left cut */
    100% 0,
    100% 100%,
    0 100%,
    0 calc(100% - 200px) /* Bottom-left cut */
  );
}

.square-3 {
  background-color: #003b5d;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 100px), /* Bottom-right cut */
    calc(100% - 100px) 100%, 
    0 100%
  );
}

.square-4 {
  background-color: #003b5d;
  clip-path: polygon(
    calc(100px) 0, /* Top-left cut */
    100% 0,
    100% 100%,
    0 100%,
    0 calc(100% - 200px) /* Bottom-left cut */
  );
}

.square-5 {
  background-color: #003b5d;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 100px), /* Bottom-right cut */
    calc(100% - 100px) 100%, 
    0 100%
  );
}


.square-6 {
  background-color: #003b5d;
  clip-path: polygon(
    0 0,
    calc(100% - 100px) 0, /* Top-right cut */
    100% 100px, 
    100% 100%, 
    0 100%
  );
}

/* Add animation when section becomes visible */
.box-section.visible .square-1 {
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.box-section.visible .square-2 {
  animation: scaleUp 1s ease forwards;
  animation-delay: 0.4s;
}

.box-section.visible .square-3 {
  animation: slideInBottom 1s ease forwards;
  animation-delay: 0.6s;
}

.box-section.visible .square-4 {
  animation: rotateIn 1s ease forwards;
  animation-delay: 0.8s;
}

.box-section.visible .square-5 {
  animation: slideInRight 1s ease forwards;
  animation-delay: 1s;
}

.box-section.visible .square-6 {
  animation: bounceIn 1s ease forwards;
  animation-delay: 1.2s;
}

/* Example Animations */
@keyframes slideInLeft {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes scaleUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInBottom {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes rotateIn {
  0% { transform: rotate(90deg); opacity: 0; }
  100% { transform: rotate(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
  0% { transform: translateY(20px); opacity: 0; }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); opacity: 1; }
}

.square-text {
  position: absolute;
  z-index: 1;
 
  font-size: 30px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400; /* Regular weight */
  letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 800px) {
  .square-row {
    flex-wrap: wrap;  /* Allow squares to wrap to next line */
    justify-content: center;
    margin-bottom: 20px;
  }


  .section-heading {
    font-size: 32px;
  }

  .section-description {
    font-size: 1rem;
  }
  .square-text {
    font-size: 22px;
    
  }
}


/* Container and Section */
.projects-section {
  padding: 60px 0;
 
}

.projects-section .container {
 
  text-align: center;
}

.section-heading h2 {
  font-size: 45px;
  color: #ff6f00;
  font-weight: 300;
}

.section-heading p {
  font-size: 27px;
  color: #446e86;
  margin-top: 20px;
  margin-bottom: 60px;
  font-family: "Montserrat Underline", serif;
  font-weight: 300;
}

/* Projects Row */
.projects-row {
  display: flex;
 
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
 
}

/* Project Item */
.project-item {
  position: relative;
 
  height: 400px;
  overflow: hidden;
 
  
}
.project-item:hover img {
  transform: scale(1.05); /* Scales the image to 105% of its size */
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.projects-section .overlay {
  position: absolute;
  bottom: 0; /* Position the overlay at the bottom of the image */
  right: 0; /* Align the overlay to the right */
 
  color: white;
  padding: 10px 20px;
  font-family: "Montserrat Underline", serif;
  font-weight: 400;
  display: block; /* Always visible */
  text-align: right; /* Align the text inside the overlay to the right */
  width: 100%; /* Ensure the overlay takes up the full width of the image */
  box-sizing: border-box; /* Include padding in the element's total width/height */
}

.projects-section .read-more {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  color: white;
  font-family: "Montserrat Underline", serif;
  font-weight: 500;
  
}

.projects-section .read-more i {
  border-radius: 50px;
  display: inline-block;
  padding: 10px; /* Adds space around the icon */
  border: 2px solid white; /* White circular border */
  border-radius: 50%; /* Makes the border circular */
  color: white; /* Ensures the arrow is black for visibility (you can change this if needed) */
  font-size: 16px; /* Adjust the size of the arrow icon */
  transition: border-color 0.3s ease; /* Adds a transition for hover effect */
  margin-left: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-item {
    width: 50%; /* Two items in one row */
  }
}

@media (max-width: 768px) {
  .project-item {
    width: 100%; /* One item in one row */
  }
}

@media (max-width: 500px) {
  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .read-more {
    font-size: 1rem;
  }
}


/* client-logo */


.client-logo-section {
  padding: 50px 0 0; /* Optional: Add padding to the section for spacing */
  position: relative;
  overflow: hidden; /* Hide the overflowing logos */
}

/* Apply the animation to only the container-fluid.container-xl */
.container-fluid.container-xl {
  position: relative;
  overflow: hidden; /* Hide the overflowing logos inside the container */
  width: 100%; /* Ensure it's taking up full width */
}

.logo-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping of logos */
  justify-content: flex-start; /* Align logos at the start */
  animation: scrollLogos 10s linear infinite; /* Apply animation to scroll logos */
}

.logo-item {
  flex-shrink: 0; /* Prevent logos from shrinking */
  margin: 0 20px; /* Add space between logos */
}

.logo-item img {
  width: 100%; /* Optional: Make logos responsive */
  max-width: 150px; /* Set a max-width for the logos */
  height: auto; /* Maintain aspect ratio of logos */
}

/* Keyframe for scroll animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(100%); /* Start position off-screen from the right */
  }
  100% {
    transform: translateX(-100%); /* Move the entire container to the left */
  }
}

.gradient-line {
  height: 3px;
  background: linear-gradient(90deg, #003b5d, #fe6d00); /* Gradient example */
  margin-top: 100px; /* Space between logos and the line */
  margin-bottom: 80px;
}




/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#service {
  background-image: url('../img/service_scope.png'); /* Replace with the actual path of your image */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  
  padding: 100px 0; /* Adds padding to the section (you can adjust this based on your preference) */
  color: white; /* Text color, to ensure readability over the dark background */
  height: 100vh;
  overflow: hidden;
 
 
}


.service .info h1 {
 
  margin-top: 300px;
 
  
  
  }
  @media(max-width:800px){
    .service .info h1{
      margin-top: 120px ;
      font-size: 32px !important;
    }
    #service-title {
    margin-top: 250px;
    }
    
  }

  @media (max-width: 500px) {
    .service .info h1{
 
      margin-top: 50px !important;
     
      
      }
      .service .info{
   
        margin-top: 120px !important;
        
        }
      #service-title {
        font-size: 32px;
  }
    
}

 #service-title {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  }
  


/*--------------------------------------------------------------
# Service detail  Section
--------------------------------------------------------------*/
.service1{
  margin: 30px 0;
  overflow: hidden;
}
.service1 h3{
  text-align: justify;
  font-size: 46px;
  color: #ff6d00;
  font-weight:300;
 
 padding-left: 13px;
}

.service1 .row img {
  margin: 0px !important;
}
  .service1 p{
    text-align: justify;
   font-size: 20px;
  }
  .service_section_img{
    width: 620px;
    max-width: 100%;
  }
  
  .service1 .gadget_img{
    padding-bottom: 80px;
  }

  
  @media(max-width:999px){
    .service_section_img{
      margin-right: auto;
      display: block;
    }
    .service1  h3{
      text-align: left !important;
     
      padding-top: 50px !important;
      margin-bottom: 20px;
     
   
    }
    .service1  p{
      text-align: left !important;
      
    }
   
    
   .gadget{
    display: block;
    margin: o auto;
   }
   .gadget_img{
    display: flex;
    flex-direction: column-reverse;
   }
  
  }
  
 
  
  @media(max-width:500px){
    .logo1 img{
    margin-left: 5px;
    width: 100px;
  }
  .service1  h3{
    font-size: 38px;
    padding-bottom: 5px !important;
  }
  .service1  p{
    padding-bottom: 8px !important;
    margin-bottom: 0px !important;
    
  }
  .service1 .gadget_img{
    padding-bottom: 20px;
  }
  .service-img {
    margin-bottom: 80px !important;
  }
  .service1 {
    margin-top: 0px;
  }
}
.service1 .gradient-line {
 
  margin-top: 80px; /* Space between logos and the line */
  margin-bottom: 0px;
 
}

/*--------------------------------------------------------------
# Service-img  detail  Section
--------------------------------------------------------------*/


.service-img {
  position: relative;
 margin: 32px 0 150px;
}

.service-image {
 max-width: 100%;
  height: auto;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;  /* Change to desired text color */
  animation: fadeInUp 4s infinite; /* Animation to fade in and slide up */
}

.image-title {
  font-size: 2rem;  /* Adjust as needed */
  font-weight: bold;
}
  

  
  /* Title Styling */
  .service-img .overlay-text .image-title {
    font-size: 40px;
    margin-bottom: 15px;
    font-family: "Montserrat Underline", serif;
    font-weight: 400;
   
  }
  .service-img .overlay-text  h2{
  color: white;
  margin-bottom: 20px;
  }
  /* Paragraph Styling */
  .service-img .overlay-text .image-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 30px;
  
  }
  
  .service-img .overlay-text  p{
    padding: 0 0px !important;
  }
  
  /* Animation Keyframes */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .service-img .overlay-text .image-title  {
      font-size: 35px;
    }
    .service-img .overlay-text .image-description {
      font-size: 1rem;
    }
    
    .service-img .overlay-text{
      top: 45%;
      left: 50%;
      width: 500px;
    }
   
  }
  
  @media (max-width: 500px) {
    
    .service-img .overlay-text .image-title  {
      font-size: 30px;
    }
    .service-img .overlay-text{
      
      width: 300px;
    }
    .service-img .overlay-text .image-description {
      font-size: 14px;
    }
    .service-image{
      max-width: fit-content;
    }
  
  }
  


/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
#project {
  background-image: url('../img/project1.png'); /* Replace with the actual path of your image */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
 
  padding: 100px 0; /* Adds padding to the section (you can adjust this based on your preference) */
  color: white; /* Text color, to ensure readability over the dark background */
  height: 100vh;
  overflow: hidden;
}
.projects .row{
  margin: 0 auto;
}

.project .info h1 {
  margin-top: 300px;
  
  }
  #project-title {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    }
  @media (max-width: 800px) {
    .project .info h1 {
      margin-top: 10px !important;
    }
    #project-title {
      font-size: 35px;
      margin-top: 50px !important;
    }
  }


   
  
    @media (max-width: 500px) {
      .project .info h1{
   
        margin-top: 50px !important;
       
        
        }
        .project .info{
     
          margin-top: 120px !important;
          
          }
        #project-title {
          font-size: 32px;
    }
      
  }
     

  

  .projects {
    overflow: hidden;
  }
  .projects .gradient-line{
    margin-bottom: 0px;
  }

.projects .portfolio-filters {
  padding: 0;
  margin: 0 auto 60px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 24px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.gallery .gradient-line {
 
  margin-top: 80px; /* Space between logos and the line */
  margin-bottom: 0px;
 
}

  

.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.projects .portfolio-filters li:first-child {
  margin-left: 0;
}

.projects .portfolio-filters li:last-child {
  margin-right: 0;
}

/* 1200px and above: 4 items per row */
@media (min-width: 1200px) {
  .portfolio-item {
    width: 25%;
  }
}

/* 1000px to 1199px: 3 items per row */
@media (min-width: 1000px) and (max-width: 1199px) {
  .portfolio-item {
    width: 33.33%;
  }
}

/* 700px to 999px: 2 items per row */
@media (min-width: 700px) and (max-width: 999px) {
  .portfolio-item {
    width: 50%;
  }
}

/* 300px to 699px: 1 item per row */
@media (max-width: 699px) {
  .portfolio-item {
    width: 100%;
  }
  .portfolio-item h4{
    text-align: left;
    padding-left: 70px;

  }
  .portfolio-item i{
    padding-left: 90px;
  }
  .portfolio-container {
    width: 100%;
    padding: 10px;
  
}
}

@media (max-width: 399px) {
  .portfolio-item i{
    padding-left: 90px;
  }
  .portfolio-item h4{
    text-align: left;
    padding-left: 70px;

  }
}


.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
  margin-bottom: 30px;
}
.projects .portfolio-content i{
  font-size: 23px;
}
.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content h4{
  font-size: 22px;
  font-family: 'Raleway',sans-serif;
}
.projects .portfolio-content .portfolio-info h4 {
  font-size: 12px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}



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



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* Target the #about section and set a background image */
#about {
  background-image: url('../img/home1.png'); /* Replace with the actual path of your image */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the background image */
  
  padding: 100px 0; /* Adds padding to the section (you can adjust this based on your preference) */
  color: white; /* Text color, to ensure readability over the dark background */
  height: 100vh;
  overflow: hidden;
}

.about .info h1{
 
margin-top: 300px;
font-family: "Montserrat Underline", serif;
font-weight: 400;
text-align: justify;
display: flex;
align-items: center;
justify-content: flex-start;


}
.about-info{
  margin: 80px 0 0;
 
}
.about-img{
  margin: 60px 0;
  overflow: hidden;
}

#about-title {
  font-size: 45px; /* Adjust font size as needed */
 font-weight: 400;
  line-height: 1.4;
  color: white; /* Ensures the title text is visible over the background */
}
.about-image {
  width: 100%;
  height: 600px; /* Maintain aspect ratio */
 
}

/* Add a container around the image for centering */
.row img {
  display: block;
  margin: 0 auto; /* Centers the image horizontally */
}

.about-info p{
  text-align: justify;
  font-size: 20px;
  padding: 0 100px;
  font-family: 'raleway', sans-serif;
  
}
/* Text Container Positioned Over the Image */
.about-img .overlay-text {
  position: absolute;
  top: 54%;
  left: 65%;
  width: 600px;
  color: white;
  text-align: justify;
  opacity: 0; /* Initially hidden */
  animation: fadeInUp 4s infinite; /* Animation to fade in and slide up */
}

/* Title Styling */
.about-img .overlay-text .image-title {
  font-size: 42px;
  margin-bottom: 15px;
  font-family: "Montserrat Underline", serif;
  font-weight: 400;
 
}
.about-img .overlay-text  h2{
color: white;
margin-bottom: 20px;
}
/* Paragraph Styling */
.about-img .overlay-text .image-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 30px;

}

.about-img .overlay-text  p{
  padding: 0 0px !important;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-img .overlay-text .image-title {
    font-size: 35px;
  }
  .about-img .overlay-text .image-description {
    font-size: 1rem;
  }
  .about-info p{
    padding: 0;
  }
  .about-img .overlay-text{
    top: 52%;
    left: 55%;
    width: 500px;
  }
  .about .info h1{
 
    margin-top: 40px;
    font-size: 38px;
    
    }
    #about-title {
      font-size: 35px;
}
}

@media (max-width: 500px) {
  .about-img .overlay-text{
    max-width: 70%;
  
    font-size: 25px;
    left: 50%;
  }
  .about-img .overlay-text .image-description {
    font-size: 19px;
    text-align: left;
  }
  .about-image {
    width: 100%;
   
    object-fit: cover;
   
  }
  .about .info h1{
 
    margin-top: 50px;
   
    
    }
    .about .info{
 
      margin-top: 120px !important;
      
      }
    #about-title {
      font-size: 32px;
}
.about-info p{
  text-align: left;
  font-size: 19px;
}
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper-wrapper {
  height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.project-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 1400px) {
  .col-lg-4  {
    flex: 0 0 50%;
    
  }
}
@media (max-width: 800px) {
  .col-lg-4  {
    flex: 0 0 100%;
    
  }
}

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


.contact {
  background-position: center 50px;
}


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

.contact .info-item i {
font-size: 20px;
background:rgb(47, 49, 146)  ;
color: #939598;
width: 44px;
height: 44px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
transition: all 0.3s ease-in-out;
margin-right: 15px;
}

.contact .info-item h4 {
padding: 0;
font-size: 20px;

margin-bottom: 5px;
color: rgb(47, 49, 146) ;
}

.contact .info-item p {
padding: 0;
margin-bottom: 0;
font-size: 14px;
}
.contact .contact__map {
height: 800px;

}
.contact.contact__map iframe {
width: 75%;
}
.callto{
overflow: hidden;
}

/*---------------------
Contact Widget
-----------------------*/


.contact-page .header{
  background-color: black;
}
.scrolled .contact-page .header{
  background-color: #e06b1b;
}

.contact-widget {
  background-color: #f4f4f9;
  margin-bottom: 30px;
  margin-top: 80px;
  
}

.contact__widget__item {
  display: flex;
  flex-direction: column;
   align-items:center;
  justify-content: center;
  margin-bottom: 50px;
 
}

.contact__widget__item__icon {
  height: 70px;
  width: 70px;
 
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 30px;
}

.contact__widget__item__text p {
  font-size: 22px;
  text-align: center;
  
  }
@media (max-width: 500px)
 {
  .contact__widget__item__icon {
    margin-right: 5px !important;
  }
  .contact__widget p{
    font-size: 16px;
    margin-right: 20px;
  }
  .contact__widget__item__text p {
    font-size: 16px;
    margin-right: 20px;
    
    }
    .contact__widget__item {
      display: flex;
       align-items:flex-start;
       margin-bottom: 0px;
       padding-right: 50px;
     
    }
    .contact__widget__item__text p{
      text-align: justify;
      margin-left: 15px;
      
    }
    .contact__widget__item_text .address_text{
      margin-left: 20px !important;
    }
    .contact-widget .col-lg-4{
      padding: 0px;
    }
}


.contact__widget__item__icon i {
  font-size: 35px;
  color: #003b5d;

}

.contact__widget__item__text {

  padding-top: 10px;
  display: flex;
  align-items: center;
}



.contact__map {
  height: 800px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
}





/* career */


.career_img{
 
    width: 620px;
    max-width: 100%;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 100px), /* Bottom-right cut */
      calc(100% - 100px) 100%, 
      0 100%
    );

  }


  #career_section{
    background-image: url("../img/career1.png");
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the background image */
   
    padding: 100px 0; /* Adds padding to the section (you can adjust this based on your preference) */
    color: white; /* Text color, to ensure readability over the dark background */
    height: 100vh;
    overflow: hidden;
  }
  
  .career_section .info h1{
   
  margin-top: 300px;
  font-family: "Montserrat Underline", serif;
  color: white;
  }
  #career-title {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    }

  @media (max-width: 800px){
    .career_section .info h1{
      margin-top: 10px !important;
    }
    #career-title {
      font-size: 35px !important;
      margin-top: 200px !important;
    }
  }

    @media (max-width: 500px) {
      .career_section .info h1{
   
        margin-top: 50px;
       
        
        }
        .career_section .info{
     
          margin-top: 120px !important;
          
          }
        #career_section-title {
          font-size: 32px;
    }
      
  }
     
  

     
  
  .career_section {
    font-size: 45px; /* Adjust font size as needed */
   font-weight: 400;
    line-height: 1.4;
    color: white; /* Ensures the title text is visible over the background */
  }

.career{
  margin-top: 80px;
}
.career h3{
  color: #e06b1b;
  font-size: 38px;
  font-family: "Montserrat Underline", serif;
  margin-bottom: 40px;
  font-weight: 400;
 
 
}


.career .gradient-line {
 
  margin-top: 80px; /* Space between logos and the line */
  margin-bottom: 0px;
 
}
.wrapper{
  padding-top: 60px;
  padding-bottom: 0px;
}
@media (max-width: 1000px) {
  .wrapper{
    padding-top: 0px;
}
.career .row img{
  margin: 0;
}
}

.wrapper h3{
  color: #e06b1b;
  font-size: 30px;
  font-family: "Montserrat Underline", serif;
  margin-bottom: 30px;
 
}
.wrapper p{
  margin-bottom: 30px;
}


/* project clickable */

body{
	line-height: 1.5;
	font-family: sans-serif;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
img{
	max-width: 100%;
	vertical-align: middle;
}
/*.gallery*/
.gallery{
	width: 100%;
	display: block;
	min-height: 100vh;
	
}
.gallery .gallery-filter{
	padding: 0 15px;
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
}
.gallery .gallery-filter .filter-item{
	color: #003b5f;
	font-size: 17px;
  border: 2px solid #003b5f;
	text-transform: uppercase;
	display: inline-block;
  border-radius: 3px;
  margin-right: 8px;
	cursor: pointer;
  padding: 8px 20px 8px 20px;
	line-height: 1.2;
	transition: all 0.3s ease;
}
.gallery .gallery-filter .filter-item.active{
	color: white;
	border-color : #003b5f;
  background: #003b5f;
}
.gallery .gallery-item{
	width: calc(100% / 4);
	padding: 15px;

}
@media (max-width: 1000px) {
  .gallery .gallery-item {
    width: calc(100% / 3);
    
  }
}

@media (max-width: 700px) {
  .gallery .gallery-item {
    width: calc(100% / 2);
    
  }
}
.gallery .gallery-item-inner img{
	width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition */
  box-shadow: 0px 2px 7px #545558;
}
.gallery .gallery-item.show{
	animation: fadeIn 0.5s ease;
}

/* Hover effect for the image */
.gallery-item-inner:hover img {
  transform: scale(1.1); /* Slightly scale up the image */
  opacity: 0.9; /* Reduce opacity for a subtle effect */
}

/* Optional: Hover effect for other elements like the location-info */
.gallery-item-inner:hover .location-info {
  opacity: 1; /* Ensure location-info appears smoothly if you want to modify its visibility */
  transform: translateY(0); /* Add transformation if needed */
}
.location-info {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}

.location-info h4 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Raleway' !important;
    font-weight: 500;
}

.location {
  display: flex;
  align-items: center;
}

.location i {
  margin-right: 8px;
  color: black;
}
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.gallery .gallery-item.hide{
	display: none;
}

/*responsive*/
@media(max-width: 491px){
	.gallery .gallery-item{
		width: 50%;
	}
}
@media(max-width: 467px){
    .gallery .gallery-item{
		width: 100%;
	}
	.gallery .gallery-filter .filter-item{
		margin-bottom: 10px;
	}
}


/* gallery popup */

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 7%;
  width: 100%;
  height: 100%;
  background-color: white; /* Black background with opacity */
  padding-top: 60px;
}

/* Modal image */
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  border-radius: 0% !important;
}
@media(max-width: 700px){
  .modal-content{
    margin-top: 20px;
    height: 700px;
    object-fit: cover;
  }
  .close {
    top: 10px;
  }
}


/* Caption for the image */
#caption {
  text-align: center;
  color: black;
  padding: 10px;
  font-size: 25px;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: 99999; /* Sit on top */
  color: black;
  font-size: 60px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #003b5f;
  text-decoration: none;
  cursor: pointer;
}
