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

/* Root Variables */
:root {
  --primary-colour: #ffffff;
  --secondary-colour: #393939;
  --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 */

/* Overlay Styling */
/* 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 */

/* Container Styles */
.container {
  max-width: 3000px;
  margin: 0px 70px;
  padding: 1rem;
  overflow: hidden;
}

/* Banner Column Styles */
.banner-column {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  box-sizing: border-box;
  position: relative;
}

/* Image Styles */
.banner-image {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Banner Text Section Styles */
.banner-inner {
  width: 100%;
  text-align: left;
  padding: 2rem;
  box-sizing: border-box;
}

.heading-xl {
  font-family: var(--text-font-family);
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1rem;
}

.paragraph {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  border: none;
  color: black;
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
}

.btn:hover {
  background-color: black;
  color: white;
  transition: ease-in-out 0.3s;
}


/* Media Queries for Small Screens */
@media only screen and (max-width: 768px) {
  .container{
    margin:0px 10px;
  }
  .banner-column {
    flex-direction: column;
    padding: 1rem;
  }

  .banner-image {
    max-width: 90%;
    margin: 1rem auto;
  }

  .banner-inner {
    text-align: center;
    padding: 1rem 0;
  }

  .heading-xl {
    font-size: 2rem;
  }

  .paragraph {
    font-size: 1.2rem;
  }

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

  .banner-links a {
    font-size: 1.2rem;
  }
}


















.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;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Aims Section Styles */
.aims-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.aims-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.aim-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.aim-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transform: translateY(-5px);
}

.section-heading {
  padding: 0px 160px;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #2e2e2e;
}

@media (max-width: 1024px) {
  .section-heading {
    padding: 0 60px;
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-heading {
    padding: 0 30px;
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-heading {
    padding: 0 15px;
    font-size: 1.8rem;
    text-align: center;
  }
}





/* 🌿 Image Card Heights */
.image-card:nth-of-type(1) {
  height: 400px;
}
.image-card:nth-of-type(3) {
  height: 400px;
}
.image-card:nth-of-type(5) {
  height: 400px;
  margin-top: -150px;

}

/* ✏️ Text Card Heights */
.text-card:nth-of-type(2) {
  height: 250px;
}
.text-card:nth-of-type(4) {
  height: 250px;
}
.text-card:nth-of-type(6) {
  height: 250px;
}

/* 🎯 Ensure images fill container height */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* 💬 Text Content Styling */
.text-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2e2e2e;
}

.text-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* 🔁 Responsive Tweaks */
@media (max-width: 768px) {
  .text-card {
    height: auto !important; /* reset height for small screens */
  }

  .text-card h3 {
    font-size: 1.1rem;
  }

  .text-card p {
    font-size: 0.95rem;
  }

  .image-card:nth-of-type(5) {
    height: 250px;  
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .text-card {
    height: auto !important; /* reset height for small screens */
  }
  .aims-container {
    grid-template-columns: 1fr;
  }

  .text-card h3 {
    font-size: 1rem;
  }

  .text-card p {
    font-size: 0.9rem;
  }

  .image-card:nth-of-type(5) {
    height: 250px;  
    margin-top: 8px;
  }
}


/* Clients Section Styles */
.clients-section {
  padding: 80px 0;
  text-align: center;
}


.section-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.client-logo img{
  width: 100px;
  height: 90px;
}

.client-logo.placeholder {
  
  border: 1px dashed #ccc;
  color: #999;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Different animation effects */
[data-animation="fadeIn"] {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation="slideUp"] {
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(50px);
}

[data-animation="zoomIn"] {
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.8);
}

.visible [data-animation="fadeIn"] {
  opacity: 1;
  transform: translateY(0);
}

.visible [data-animation="slideUp"] {
  opacity: 1;
  transform: translateY(0);
}

.visible [data-animation="zoomIn"] {
  opacity: 1;
  transform: scale(1);
}