@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;900&display=swap");

/* Root Variables */
:root {
  --primary-colour: #ffffff;
  --secondary-colour: #0a6aaf;
  --tertiary-colour: #353e45;
  --font-colour: #323740;
  --font-2-color: #575757;
  --text-font-family: "Roboto", serif;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar Styling */
/* Start Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 90px 0px 90px;
  background-color: var(--primary-colour);
}

.logo-container img {
  height: 40px;
}

.nav-links-container {
  display: flex;
  gap: 20px;
}

.nav-links-container a {
  text-decoration: none;
  font-family: var(--text-font-family);
  color: var(--font-colour);
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links-container a:hover {
  color: var(--secondary-colour);
}
/* End Navbar */





/* Start Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0.5;
  transition: 0.3s ease;
}

.overlay.open {
  display: flex;
}
/* End Overlay */













/* Start Dropdown */
.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: var(--font-colour);
  padding: 10px 15px;
  background-color: inherit;
  font-family: var(--text-font-family);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--primary-colour);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

.dropdown-content a {
  color: var(--font-colour);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: var(--secondary-colour);
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* End Dropdown */

/* Hamburger Menu */
/* Start Hamburger Menu */
.hamburger-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
}

.hamburger {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-colour);
  transition: all 0.3s ease;
}

.hamburger-menu-container.open .First {
  transform: rotate(45deg);
}

.hamburger-menu-container.open .Second {
  opacity: 0;
}

.hamburger-menu-container.open .Third {
  transform: rotate(-45deg);
}
/* End Hamburger Menu */

/* Sidebar Styling */
/* Start Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--primary-colour);
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1;
  overflow: hidden;
}
.sidebar a {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 20px;
  color: var(--font-colour);
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: var(--secondary-colour);
}

.sidebar.open {
  width: 250px;
}

.sidebar-logo{
  width: 6rem;
  height: auto;
  margin-bottom: 15px;
  border-radius: 2px;
}

hr {
  border: none;
  height: 0.3px;
  background-color: #d7d7d7; /* Color of the line */
  margin: 20px 10px; 
}
/* End Sidebar */

/* Small Screen Styles */
/* Start Small Screen */
.small-screen-values {
  font-family: var(--text-font-family);
  display: flex;
  flex-direction: column;
  padding: 10px;
  font-size: 16px;
}

.small-screen-dropdown .dropbtn {
  color: var(--font-colour);
  padding: 10px 15px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  font-family: var(--text-font-family);
}

.dropdown-content a {
  color: var(--font-colour);
}
.dropdown-content :hover{
  background-color: #f1f1f1;
}

.small-screen-dropdown:hover .dropdown-content {
  display: block;
}
/* End Small Screen */

/* Large Screen Values */
/* Start Large Screen Values */
.large-screen-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  font-family: var(--text-font-family);
  color: var(--font-colour);
}

.large-screen-values h2,
.large-screen-values h3 {
  font-size: 40px;
  margin-bottom: 10px;
}

.large-screen-values p {
  color: var(--secondary-colour);
  margin-bottom: 50px;
  font-size: 16px;
}
/* End Large Screen Values */

/* Media Queries */
/* Start Media Queries */
@media (max-width: 768px) {
  .nav-links-container {
    display: none;
  }

  .hamburger-menu-container {
    display: flex;
  }

  .large-screen-values {
    display: none;
  }

  .logo-container img {
    height: 30px;
  }

  .slideshow-container img {
    height: auto;
  }

  .navbar{
    padding: 20px 20px 0px 20px;
  }
}

@media (min-width: 769px) {
  .nav-links-container {
    display: flex;
  }

  .sidebar a {
    display: none;
  }

  .sidebar.open {
    width: 500px;
  }

  .small-screen-dropdown{
    display: none;
  }

  hr{
    display: none;

  }
}
/* End Media Queries */












/* slider-hero-section */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 90%; 
  margin: 20px auto; 
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

.slider-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}


.slide {
  flex: 1 0 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative; 
}

.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.389); 
  z-index: 2;
  pointer-events: none; 
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.slider-heading {
  font-family: var(--text-font-family);
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.552); 
}


.slider-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.552); 
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: inline-block;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.btn:hover {
  transform: scale(1.1);
}

/* Contact Us Button */
.btn-services{
  background-color: #ffffff;
  color: black;
  transition: transform 0.3s ease-in-out;
}

/* See Projects Button */
.btn-projects {
  background-color: #ffffff;
  color: black;
  transition: transform 0.3s ease-in-out;
}

/* Ensuring Responsiveness of herosection and navbar */
@media (max-width: 1200px) {
  .slide {
    height: 80vh;
  }
}

@media (max-width: 992px) {
  .slide {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: auto;
  }

  .slide {
    height: 40vh;
  }

  .slider-heading {
    font-size: 1.5rem;
  }

  .slider-text {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 0.5rem;
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 440px) {
  .slide {
    height: 40vh;
  }

  .slider-heading {
    font-size: 1.3rem;
  }

  .slider-text {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }

  
}






/* second-section-index */


.second-section-index {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 60px 100px 60px 100px;
  gap: 10px;
  font-family: var(--text-font-family);
}

/* Left Section */
.left-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align to the left */
  gap: 10px;
}

/* Aligning heading and image */
.left-section h1,
.image-container {
  color: #313131;
  font-size: 1.9rem;
  width: 100%; /* Same width for both */
  max-width: 500px; /* Optional: limit max width */
}

.image-container {
  width: 100%;
  text-align: left; /* Align image with heading */
}

.left-image {
  width: 100%;
  border-radius: 12px;
}


/* Right Section */
.right-section {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #081732;
}

.read-more-btn {
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.read-more-btn:hover {
  background-color: #c1c1c1;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .second-section-index {
    flex-direction: column;
    margin: 40px 40px;
    gap: 20px;
  }

  .right-section {
    width: 100%;
  }

  .left-section h1 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .read-more-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .second-section-index {
    margin: 30px 20px;
    gap: 24px;
  }

  .left-section h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .image-container {
    text-align: center;
  }

  .right-section {
    width: 100%;
  }

  .about-text p {
    font-size: 15px;
    text-align: justify;
  }

  .read-more-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}



/* Latest Projects Section */
.latest-projects {
  margin: 50px 150px;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  font-family: var(--text-font-family);
}

/* Section Title */
.section-title {
  text-align: left;
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
}

/* Project Container */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5px;
}

/* Project Card Styles */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.project-card img {
  width: 100%;
  height: 300px;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect to reveal details */
.project-card:hover img {
  transform: scale(1.1);
  /* filter: brightness(0.5); */
}

.project-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 33, 48, 0.5);
  color: #fff;
  padding: 20px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-details {
  opacity: 1;
}

.project-details h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

.project-details p {
  font-size: 16px;
  margin: 0;
}

/* Responsive Styles */

/* For tablets (768px and below) */
@media (max-width: 768px) {
  .latest-projects {
    margin: 30px 40px;
    padding: 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .project-details h3 {
    font-size: 20px;
  }

  .project-details p {
    font-size: 14px;
  }
}

/* For mobile phones (480px and below) */
@media (max-width: 480px) {
  .latest-projects {
    margin: 20px 16px;
    padding: 14px;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
  }

  .project-card img {
    height: 200px;
  }

  .project-details h3 {
    font-size: 18px;
  }

  .project-details p {
    font-size: 13px;
  }
}








/* Marquee Section Styling */
.marquee-section {
  font-family: var(--text-font-family);
  margin: 50px 150px;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
}



/* Marquee Container */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;

}

/* Marquee Wrapper */
.marquee {
  display: flex;
  width: calc(150px * 12); /* 6 images * 2 for seamless loop */
  animation: scroll 20s linear infinite;
}

/* Marquee Content (Logos) */
.marquee-content {
  font-family: var(--text-font-family);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.marquee img {
  width: 120px;
  height: auto;
  margin: 0;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect to Highlight Logos */
.marquee img:hover {
  transform: scale(1.1);
}

/* Marquee Animation Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .marquee-section {
    margin: 20px;
    padding: 20px;
  }

  .marquee img {
    width: 100px;
  }
}




















/* contact us section */
.container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap; 
}

.column {
  text-align: center;
  width: 30%;
  
}

.icon {
  width: 50px;
  height: 50px;
}

.heading {
  font-size: 1.5rem;
  margin-top: 10px;
}
.column a {
  text-decoration: none;
}

.column a:hover{
  text-decoration: underline;
}

.description {

  font-size: 1rem;
  margin-top: 10px;
  color: #555;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .container {
    flex-direction: column; 
    align-items: center;
  }

  .column {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .heading {
    font-size: 1.25rem; 
  }

  .description {
    font-size: 0.9rem; 
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.1rem; 
  }

  .description {
    font-size: 0.85rem; 
  }

  .icon {
    width: 40px; 
    height: 40px;
  }
}


























































.footer {
  background-image: url("../Assets/backgrounds/backgrounds\ \(3\).jpg");
  background-color: #f7f7f7;
  padding: 4rem 2rem 2rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
  color: #292929;
}

.footer-links,
.footer-services {
  flex: 1 1 180px;
}

.footer-links h4,
.footer-services h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #111;
}

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

.footer-links li,
.footer-services li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* loader animations */
/* Circle loader */
.loader {
  position: fixed; 
  top: 50%; 
  left: 50%; 
  margin-top: -25px; 
  margin-left: -25px; 
  border: 5px solid #f3f3f3; 
  border-top: 5px solid var(--secondary-colour); 
  border-radius: 50%; 
  width: 70px; 
  height: 70px; 
  animation: spin 1.5s linear infinite;
  z-index: 9999; 
  display: none; 
}

/* Animation for the rotation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.show-loader .loader {
  display: block;
}

