/* CSS Variables */
:root {
    --primary-color: #064469;
    --link-hover-color: #acdcff;
    --hover-color: #acdcff;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark-bg: #eee;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 200 !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
}

*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Section Title Style */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Navigation Bar */
/* Initial transparent navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2); /* Transparent background */
    backdrop-filter: blur(10px); /* Modern blur effect */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition with cubic easing */
    transform: scale(1); /* Initial full size */
}

/* Scrolled navbar */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.7); /* Dark background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
    padding: 0.75rem 2rem; /* Reduce padding for a compact look */
    opacity: 0.95; /* Slight fade effect for smoothness */
}

/* Add more emphasis on the transition for a cool animation */
.navbar.scrolled .nav-links li a {
    color: #f7f7f7; /* Add a modern hover-color glow */
    transition: color 0.3s ease-in-out;
}

/* Logo stays in the left corner */
.hero-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 180px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links li {
    margin-right: 2rem;
}

.nav-links .mobile-contact {
    background-color: var(--primary-color) !important;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--link-hover-color);
}
.nav-links li a,
.primary-btn {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Contact Us Button in Navbar */
.primary-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 2rem;
    background: transparent;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-btn:hover {
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-dark-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 2rem;
    background: transparent;
    color: #1c1e2d;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #1c1e2d;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-dark-btn:hover {
    display: inline-block;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    transition: background 0.3s ease, color 0.3s ease;
}

.preload-hero {
  display: none;
}


.hero {
    position: relative;
    background-image: url('../images/main-hero.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Hamburger Menu Base Style */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 20;
    background-color: transparent;
    border: none;
    margin-left: auto; /* Push it to the right */
  }
  
  /* Hamburger Lines */
  .hamburger .line {
    background-color: white;
    border-radius: 10px;
    height: 6px;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  /* Specific Line Widths to Match Design */
  .line1 {
    width: 25px;
  }
  
  .line2 {
    width: 35px;
  }
  
  .line3 {
    width: 20px;
  }
  
  /* Toggle to 'X' Icon (Optional, can skip if not needed) */
  .hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
    width: 35px;
  }
  
  .hamburger.active .line2 {
    opacity: 0;
  }
  
  .hamburger.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 35px;
  }
  
  /* Show hamburger on tablets and smaller */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
     top: 70%;
      right: -100%;
      height: 100vh;
      width: 220px;
      background-color: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 3rem;
      transition: right 0.3s ease-in-out;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      margin: 1.5rem 0;
    }
    .nav-links li:hover a {
        color: var(--link-hover-color) !important;
      }
  }
  

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

* {
    transition: all 0.3s ease-in-out;
}

/* Navbar Links Hover with Smooth Color Transition */
.nav-links li a {
    position: relative;
    display: inline;
    color: var(--white);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--hover-color);
    transition: width 0.4s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--hover-color);
}

/* Hero Section Content Fade-in */
.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations for Services Section */
.services-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About and Experience Wrapper */

.about-experience-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 0;
    height: auto;
    gap: 2rem; /* Add space between About and Experience */
}

/* Background Image for the Experience Section */
/* Styling the image container */
.experience-image {
    position: relative;
    overflow: hidden; /* Prevents the image from overflowing */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Styling the image itself */
.experience-image img {
    max-width: 600px !important;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect on image: Zoom and brightness increase */
.experience-image:hover img {
    transform: scale(1.1); /* Zoom in the image */
    filter: brightness(1.2); /* Increase brightness for a glowing effect */
}

/* Optionally, you can add a dark overlay on hover */
.experience-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.experience-image:hover::before {
    opacity: 1; /* Show overlay when hovering */
}


/* About Section */
.about {
    position: absolute;
    z-index: 2;
    background-color: rgba(6, 68, 105, 0.95);
    color: var(--white);
    padding: 13rem 2.5rem;
    width: 550px;
    top: -110px;
    transform: translateX(80%);
    text-align: justify;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 200; /* Make the arrow thinner */
    line-height: 1; /* Adjust the line-height for better spacing */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 40px;
    justify-self: anchor-center;
}
.about-title i {
    margin-left: 10px; /* Add some space between the text and the icon */
    font-size: 2rem; /* Reduce the size of the arrow */
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--white);
    color: #1c1e2d;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.learn-more-btn:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

/* Experience Section */
.experience {
    position: absolute;
    z-index: 3;
    background-color: #dbdbdb;
    padding: 2.5rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    width: 600px;
    bottom: -220px; /* Slightly below the image */
    left: calc(50% - 400px); /* Overlap lower-left corner */
    transform: translateX(-40%); /* Horizontal shift for overlap */
}

.experience-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.experience-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--white);
    color: #1c1e2d;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.portfolio-btn:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

/* Recent Works Section */
.recent-works{
    background-color: #dbdbdb;
    padding: 11rem 0 7rem 0;
    text-align: center;
    margin: 7rem 0 0 0;
}

.expertise {
    background-color: #dbdbdb;
    padding: 2rem 0 7rem 0;
    text-align: center;
}

.recent-works h2, .expertise h3 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.expertise h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
}
.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* Makes both columns match height */
  gap: 2rem;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  min-height: 100%; /* Ensures consistent height */
}


.work-item .work-image,
.work-item .work-description {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid Layout for Works Container */
.works-container, .expertise-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Work Items Styling */
.work-item, .expertise-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Styling for each work item image container */
.work-item .work-image, .expertise-item .expertise-image {
    position: relative;
    overflow: hidden; /* Prevents the image from overflowing */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Styling for each image inside the work item */
.work-item .work-image img, .expertise-image img {
    max-height: 500px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect on image: Zoom and brightness increase */
.work-item .work-image:hover img, .expertise-item .expertise-image:hover img {
    transform: scale(1.1); /* Zoom in the image */
    filter: brightness(1.2); /* Increase brightness for a glowing effect */
}

/* Optional: Dark overlay effect on hover */
.work-item .work-image::before, .expertise-item .expertise-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.work-item .work-image:hover::before, .expertise-item .expertise-image:hover::before {
    opacity: 1; /* Show overlay on hover */
}


/* Work Description */
.work-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    text-align: left;
}

.work-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.work-description p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Modern Bullets Styling */
.modern-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modern-bullets li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #666; /* Subtle gray text */
}

.modern-bullets .bullet-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: var(--primary-color); /* Replace with your brand color */
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    line-height: 25px;
    margin-right: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.modern-bullets li:hover .bullet-icon {
    background-color: var(--hover-color); /* On hover, use a lighter/dynamic color */
    transform: scale(1.1); /* Slight zoom on hover */
}

.view-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--hover-color);
}

/* Alternating Layout */
.work-item.right-image {
    grid-template-columns: 1fr 1fr;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .works-container {
        grid-template-columns: 1fr;
    }

    .work-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .work-item.right-image {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-section {
    position: relative;
    background: url('../images/hero-services.webp') no-repeat center center/cover; /* Replace with your image */
    padding: 0;
    color: #ffffff;
    text-align: center;
    font-family: 'Poppins', sans-serif; /* Updated font */
}

.services-overlay {
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    padding: 4rem 0;
}

.services-title {
    font-size: 3.5rem;
    margin-bottom: 3rem !important;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFF;
    margin-bottom: 1rem;
}

.services-container {
    display: flex;
    justify-content: space-around; /* Even spacing between items */
    gap: 2rem;
    flex-wrap: wrap; /* Stack items on smaller screens */
    margin-bottom: 2rem;
}

.service-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.service-item i {
    font-size: 3rem;
    color: #fff; /* Thin white line icons */
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.service-item p {
    font-size: 0.9rem;
    color: #d0d0d0;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.services-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 2rem;
    background: transparent;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.services-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column; /* Stack items vertically */
    }

    .service-item {
        max-width: 100%;
    }
}
/* Blog Section */
.blog-section {
    background-color: #f4f4f4; /* Soft background */
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.blog-overlay {
    background-color: rgba(0, 0, 0, 0.05); /* Subtle overlay */
    padding: 3rem 0;
}

.blog-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid layout */
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.blog-item {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-description {
    padding: 1.5rem;
    text-align: left;
}

.blog-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.blog-description p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.read-more-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr; /* Stack the blog posts on smaller screens */
    }

    .blog-description h3 {
        font-size: 1.5rem;
    }

    .read-more-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr; /* Stack blog posts on smaller screens */
    }

    .blog-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .blog-image {
        margin-bottom: 1rem;
    }
}




/* Scroll Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Light gradient background */
    padding: 4rem 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    gap: 1.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; /* Ensure responsive design */
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

input,
textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd; /* Single-line input */
    padding: 0.5rem 0;
    font-size: 1rem;
    background: transparent;
    color: #333;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

input:focus,
textarea:focus {
    border-bottom: 1px solid #064469; /* Primary color focus effect */
    outline: none;
}

textarea {
    height: 120px;
    resize: none;
    padding-bottom: 0.5rem; /* Keep consistent padding */
}
.submit-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    width: 100%;
    margin-top: 1rem;
}


.contact-links {
    max-width: 200px;
    text-align: left;
}

.contact-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-links ul li {
    margin-bottom: 1rem;
}

.contact-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* Info Links Section */
.info-links-section {
    background-color: var(--primary-color); /* Match background of the footer */
    padding: 3rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f7f7f7;
    border-bottom: 1px solid #1c5f87; /* Thin white line to divide */
}

.info-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    color: #f7f7f7;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.info-links {
    padding: 1.5rem;
}

.info-links h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #f7f7f7;
}

.info-links ul {
    list-style: none;
    padding: 0;
}

.info-links ul li {
    margin-bottom: 1rem;
}

.info-links ul li a {
    font-size: 1rem;
    color: #f7f7f7;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-links ul li a:hover {
    color: var(--hover-color);
    transform: translateX(5px);
}

.footer-content p {
    padding-top: 1rem;
    text-align: center;
    font-size: 1rem;
    color: #f7f7f7;
}


/* Contact Information Section */
.contact-info {
    display: flex;
    justify-content: space-between; /* Align address and social media */
    align-items: center;
    padding: 2rem;
    background-color: var(--primary-color); /* Match background of the footer */
}

/* Contact Information Section */
.contact-info {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    padding: 2rem;
    background-color: var(--primary-color); /* Match background of the footer */
}

.address {
    width: 100%; /* Ensure address takes full width */
    margin-bottom: 1.5rem; /* Add space between address and follow us section */
}

.social-media {
    width: 100%; /* Ensure social media section takes full width */
}

.social-media-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-media-icons li {
    display: inline-block;
}

.social-media-icons .social-icon {
    font-size: 1.5rem;
    color: #f7f7f7;
    transition: color 0.3s ease-in-out;
}

.social-media-icons .social-icon:hover {
    color: var(--hover-color);
}

/* Optional: Styling for the title (company name or section) */
.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}


/* Footer Section */


.footer .footer-content p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}


/* Footer "Under The Rug" Parallax Effect */
.footer {
    position: fixed; /* Keep the footer fixed at the bottom */
    bottom: 0;
    left: 0;
    width: 100%; /* Full width of the viewport */
    z-index: -1; /* Place it behind all content */
    background-color: var(--primary-color); /* Match your footer's background */
    color: var(--white);
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Body Content Adjustment */
body {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    z-index: 0; /* Ensure content stays above the footer */
    padding-bottom: 440px; /* Ensure space for footer content, adjust based on footer height */
}

/* Ensure no content overlaps the footer */
.main-content {
    position: relative;
    z-index: 1; /* Keep it above the footer */
    background: #f7f7f7;
}

/* Optional: Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-logo {
        width: 120px;
    }
    .about-experience-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
        position: relative;
    }

    .about {
        position: relative;
        transform: none !important;
        width: 80% !important;
        padding: 1.5rem !important;
        text-align: left !important;
        font-size: 0.9rem !important;
        top: -120px !important;
    }

    .about-title {
        top: 20px;
        font-size: 1.6rem !important;
        text-align: left;
        margin-bottom: 1rem !important;
    }

    .about .about-text {
        margin-top: 5rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .experience-image {
        width: 100%;
        max-width: 300px !important;
        margin-top: -120px !important;
        margin-left: 200px !important;
        order: 2;
    }

    .experience-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .experience {
        width: 50% !important;
        font-size: 0.9rem !important;
        bottom: -200px !important;
        left: 200px !important;
        order: 2 !important;
    }

    .experience-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .experience-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .secondary-dark-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    .recent-works {
        margin: 15rem 0 0 0;
        padding: 3rem 0 7rem 0;
    }
    .recent-works h2, .expertise h3 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
}

/* Mobile Responsiveness */
@media (max-width: 1440px) {
    .about-experience-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
        position: relative;
    }

    .about {
        transform: none;
        width: 550px;
        padding: 1.5rem 3rem 8rem 3rem;
        font-size: 0.9rem;
        top: -80px;
        transform: translateX(70%);
    }

    .about-title {
        top: 20px;
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 1rem;
    }

    .about .about-text {
        margin-top: 5rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .experience-image {
        width: 100%;
        max-width: 500px;
        margin-top: 80px;
        margin-left: 100px;
        order: 2;
    }

    .experience-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .experience {
        width: 40%;
        font-size: 0.9rem;
        bottom: -200px;
        left: 300px;
        order: 2;
    }

    .experience-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .experience-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .secondary-dark-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    .recent-works {
        margin: 15rem 0 0 0;
        padding: 3rem 0 7rem 0;
    }
    .recent-works h2, .expertise h3 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
}


/* Mobile Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-experience-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1rem;
        position: relative;
    }

    .about {
        transform: none;
        width: 350px;
        padding: 1.5rem 3rem 5rem 3rem;
        font-size: 0.9rem;
        top: -80px;
        transform: translateX(85%);
    }

    .about-title {
        top: 20px;
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 1rem;
    }

    .about .about-text {
        margin-top: 5rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .experience-image {
        width: 100%;
        max-width: 500px;
        margin-top: 80px;
        margin-left: 100px;
        order: 2;
    }

    .experience-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .experience {
        width: 40%;
        font-size: 0.9rem;
        bottom: -200px;
        padding: 2.5rem 2rem;
        left: 220px;
        order: 2;
    }

    .experience-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .experience-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .secondary-dark-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    .recent-works {
        margin: 15rem 0 0 0;
        padding: 3rem 0 7rem 0;
    }
    .recent-works h2, .expertise h3 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px; /* Initially off-screen */
    display: flex; /* Ensure it's always flex for transition purposes */
    background-color: rgba(0, 0, 0, 0.5);
    color: white; /* Change this to ensure contrast */
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: right 0.3s ease-in-out; /* Add transition for right */
    z-index: 100; /* Ensure it's above other elements */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* Modern Customer Reviews Section */
.customer-reviews {
    position: relative;
    background-image: url('../images/reviews-bg.JPG'); /* Background image */
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    overflow: hidden;
}

.customer-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    z-index: 1;
}

.customer-reviews * {
    position: relative;
    z-index: 2;
}

.reviews-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    padding: 2rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.review-text {
    font-size: 1rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.review-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.review-author span {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 90%;
    }
}




.footer-content {
    padding-top: 1rem;
}


/* Responsive Footer for Tablets and Phones */
@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .info-links {
        padding: 0;
    }

    .info-links h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .info-links ul li {
        margin-bottom: 0.75rem;
    }

    .social-media-icons {
        justify-content: center;
    }

    .footer .footer-content p {
        font-size: 0.9rem;
        padding: 1rem;
    }
}


/* Extra small devices (phones, less than 576px) */
@media (max-width: 405.98px) {
    body{
        padding-bottom: 800px;
    }
    h2 {
        font-size: 2rem !important;
    }
    h3 {
        font-size: 1.2rem !important;
    }
    .footer{
        font-size: 0.8rem;
        
    } 
    .info-links h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .info-links ul li a {
        font-size: 0.8rem;
    }
    .info-links ul li {
        margin-bottom: 0.3rem;
    }
    .experience-image {
       display: none;
    }
    .experience {
        width: 80% !important;
        font-size: 0.9rem !important;
        bottom: -420px !important;
        left: 160px !important;
        order: 2 !important;
    }
    .recent-works {
        margin: 28rem 0 0 0;
        padding: 3rem 1rem 3rem 1rem;
    }
    .blog-item {
        margin: 0 1rem;
    }
    .contact-title {
        font-size: 2rem;
    }
  }
   /* Small devices (phones in landscape, 576px and up) */
   @media (min-width: 406px) and (max-width: 576px) {
    body{
        padding-bottom: 800px;
    }
    .footer{
        font-size: 0.8rem;
        
    } 
    .info-links h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .info-links ul li a {
        font-size: 0.8rem;
    }
    .info-links ul li {
        margin-bottom: 0.3rem;
    }
    .experience-image {
        display: none;
     }
     .experience {
         width: 80% !important;
         font-size: 0.9rem !important;
         bottom: -400px !important;
         left: 180px !important;
         order: 2 !important;
     }
     .recent-works {
         margin: 28rem 0 0 0;
         padding: 3rem 1.5rem 3rem 1.5rem;
     }
     .blog-item {
        margin: 0 1.5rem;
    }
    h2 {
        font-size: 2rem !important;
    }
    h3 {
        font-size: 1.2rem !important;
    }
  }
  /* Small devices (phones in landscape, 576px and up) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    body{
        padding-bottom: 800px;
    }
    .footer{
        font-size: 0.8rem;
        
    } 
    .info-links h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .info-links ul li a {
        font-size: 0.8rem;
    }
    .info-links ul li {
        margin-bottom: 0.3rem;
    }
    .experience-image {
        display: none;
     }
     .experience {
         width: 80%;
         font-size: 0.9rem;
         bottom: -400px;
         left: 180px;
         order: 2;
     }
     .recent-works {
         margin: 28rem 0 0 0;
         padding: 3rem 0 7rem 0;
     }
     body{
        padding-bottom: 0px;
    }
    .blog-item {
        margin: 0 1.5rem;
    }
  }
  
  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    body{
        padding-bottom: 750px;
    }
    .footer{
        font-size: 0.8rem;
        
    } 
    .info-links h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .info-links ul li a {
        font-size: 0.8rem;
    }
    .info-links ul li {
        margin-bottom: 0.3rem;
    }
    .blog-item {
        margin: 0 2rem;
    }
    .recent-works {
         padding: 3rem 2rem 3rem 2rem;
    }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    h2 {
        font-size: 2.5rem !important;
    }
    h3 {
        font-size: 1.6rem !important;
    }

    .experience-image img {
        max-width: 400px;
    }
    .blog-item {
        margin: 0 1.5rem;
    }
    .recent-works {
        padding: 3rem;
    }
    .recent-works p {
        font-size: 0.8rem;
    }
    .blog-container {
        gap: 0rem;
    }
    .blog-item {
       margin: 0 1rem;
    }
    .blog-item p {
        font-size: 0.8rem;
    }
   
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) and (max-width: 1439.98px) {
    .experience-image img {
        max-width: 500px;
    }
    
  }
  
  @media (min-width: 1440px) and (max-width: 1919.98px) {
    .experience-image img {
        max-width: 600px;
    }

  
  }
  @media (min-width: 1920px) {
    /* styles for 4K and above */
  }
  