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

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

/* Header and Navigation */
header {
  background-image: linear-gradient(to right, #ff6b00, #ff8a32);
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
nav a{
  font-size: 1.25rem;
  font-weight: 700;
}

/* .logo img {
  height: 100px;
} */




.nav-links {
  /* display: flex;
  justify-content: center;
  margin-top: 10px; */
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 20px;
  position: relative;
}

.nav-links li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}

.nav-links li:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile Styles */
/* Base styles for mobile navigation */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      width: 100%;
      text-align: center;
      flex-direction: column;
      margin-top: 10px;
      background: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
      position: absolute;
      top: 60px; /* Adjust based on navbar height */
      right: 0;
      padding: 20px 0;
      transition: all 0.4s ease; /* Smooth open/close animation */
      border-radius: 0 0 8px 8px; /* Rounded bottom edges */
  }

  /* Show nav-links when the menu is open */
  .nav-links.active {
      display: flex;
  }

  /* Style for menu items */
  .nav-links li {
      /* margin: 10px 0; Space out each item */
      list-style: none;
  }

  /* Link styling */
  .nav-links a {
      text-decoration: none;
      color: #fff;
      font-size: 1.2rem;
      /* padding: 10px 20px; */
      display: block;
      transition: background 0.3s, color 0.3s; /* Smooth hover effects */
  }

  /* Hover effect for links */
  .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2); /* Light overlay on hover */
      border-radius: 6px;
  }

  /* Hamburger icon visible only on mobile */
  .hamburger {
      display: block;
      font-size: 1.5rem;
      color: #fff;
      cursor: pointer;
      transition: transform 0.6s ease; /* Smooth rotation */
  }

  /* Rotate hamburger icon when active */
  .hamburger.active {
      transform: rotate(180deg); /* Rotate icon on toggle */
  }
}



/* @media (max-width: 768px) { original
  .nav-links {
      display: none;
      width: 100%;
      text-align: center;
      flex-direction: column;
      margin-top: 0px;
  }

  .nav-links li {
      margin: 0px 0;
      
  }

  .hamburger {
      display: block;
  }
} */
section {
  scroll-margin-top: 80px; /* Adjust this value based on your navbar's height */
}


  .home-section {
    background-image: linear-gradient(to bottom, rgb(255, 145, 0), rgba(255, 115, 0, 0.959)), url('https://static.vecteezy.com/system/resources/previews/010/486/991/original/gradient-background-pastel-orange-and-soft-orange-abstract-simple-cheerful-and-clean-style-suitable-for-copy-space-wallpaper-background-banner-flyer-or-decor-free-vector.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
  }
  
  .home-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
  }
  
  .home-section p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* About Us Section */
  .about-section {
    padding: 80px 20px;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-section p {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Services Section */
  .services-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
  }
  
  .services-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .services-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .services-section li {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .services-section li:hover {
    transform: translateY(-10px);
  }
  
  /* Projects Section */
  .projects-section {
    padding: 8px 20px;
    text-align: center;
  }
  
  .projects-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
  }
  
  .projects-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .projects-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .projects-section li {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  
  .projects-section li:hover {
    transform: scale(1.05);
  }
  
  .projects-section a {
    display: block;
    position: relative;
  }
  
  .projects-section a::after {
    content: 'View Project';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .projects-section li:hover a::after {
    opacity: 1;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    display: none;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 80px 20px;
    text-align: center;
    
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
  }
  
  .contact-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ff6b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  address {
    /* margin-bottom: 40px;
    font-size: 1.35rem; */
    text-align: center;
    justify-content: center;
    /* margin-bottom: 0px; */
    margin: 20px;
    font-size: 1.35rem;
    line-height: 1.6;          /* Increases readability */
    color: #333;               /* Darker color for better contrast */
    font-weight: 500;          /* Medium weight for a professional look */
    font-style: normal;        /* Avoids italic style if you want a modern look */
    padding: 20px;             /* Adds internal spacing for balance */
    /* border-left: 4px solid #0f172a; Adds a subtle vertical border for style */
    background-color: #f9f9f9; /* Light background for better contrast */
    border-radius: 8px;        /* Rounds the corners slightly */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */

  }
  
  .contact-section {
    padding: 40px;
    background-color: #f9f9f9;               /* Soft background color for contrast */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-section form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
    padding: 12px 15px;                        /* Adds more padding for comfort */
    border: 1px solid #ccc;
    border-radius: 8px;                        /* Softer corners for modern look */
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #ff6b00;                     /* Highlighted border on focus */
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.2); /* Soft shadow on focus */
    outline: none;
}

.contact-section textarea {
    grid-column: 1 / -1;
    height: 150px;
}

.contact-section button {
    grid-column: 1 / -1;
    background-color: #ff6b00;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-section button:hover {
    background-color: #ff8a32;
    transform: scale(1.02);                    /* Slight scale-up effect on hover */
}

/* Optional: Add subtle hover effect to inputs */
.contact-section input:hover,
.contact-section textarea:hover {
    border-color: #ff6b00;
}













  
  .social-media {
    margin-top: 40px;
  }
  
  .social-media a {
    display: inline-block;
    margin-left: 10px;
    color: #ff6b00;
    transition: color 0.3s ease-in-out;
  }
  
  .social-media a:hover {
    color: #ff8a32;
  }
  
  /* Footer */
  footer {
    background-color: #ff6b00;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .home-section h1 {
      font-size: 2.5rem;
    }
  
    .home-section p {
      font-size: 1.2rem;
    }
  
    .about-section h2,
    .services-section h2,
    .projects-section h2,
    .contact-section h2 {
      font-size: 2rem;
    }
  
    .services-section li,
    .projects-section li {
      padding: 30px;
    }
  
    .contact-section form {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .home-section h1 {
      font-size: 2rem;
    }
  
    .home-section p {
      font-size: 1rem;
    }
  
    .about-section h2,
    .services-section h2,
    .projects-section h2,
    .contact-section h2 {
      font-size: 1.8rem;
    }
  
    .services-section li,
    .projects-section li {
      padding: 20px;
    }
  }

  .section-title {
    text-align: center;
    margin: 0 0 40px;
  }
  
  .section-title h2 {
    margin: 0 0 10px;
  }
  
  .separator::after {
    background: #ff6b00;
    content: "";
    height: 5px;
    left: -1px;
    position: absolute;
    top: -1px;
    width: 30px;
  }
  
  .separator {
    background-color: #ff6b00;
    border: 1px solid #ff6b00;
    display: block;
    height: 5px;
    margin: 0 auto;
    position: relative;
    width: 60px;
  }
  
  .title-border-left::after {
    content: "";
    position: absolute;
    width: 50px;
    border: 1px solid #033d75;
  }
  
  .testimonials-wrapper {
  background: url(https://i.ibb.co/PWC66Nt/patteren.jpg) left top rgba(0, 0, 0, 0);
  min-height: 30%;
  padding: 14px 40px 7px;
  position: relative;
  margin: 30px;
}

  
  .inner-page-wrapper.testimonials-wrapper {
    background: 0 0;
  }
  
  .inner-page-wrapper.testimonials-wrapper .owl-nav {
    position: absolute;
    right: 0;
    top: -30px;
    z-index: 99;
  }
  
  .inner-page-wrapper.testimonials-wrapper .owl-nav > div {
    border: 2px solid #333;
    color: #ffffff;
  }
  
  .testimonials-wrapper .section-title h2 {
    margin: 0 0 10px;
    color: #ff6b00;
  }
  
  .testimonials-wrapper .owl-nav {
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 99;
  }
  
  .testimonials-wrapper .owl-next,
  .testimonials-wrapper .owl-prev {
    position: relative;
    height: 38px;
    width: 38px;
    line-height: 33px;
    text-align: center;
    font-size: 22px;
    color: #ff6b00; 
    /* color: #fff;  */
    /* ff6b00 */
    margin-left: 10px;
    display: inline-block;
    border: 2px solid #ff6b00;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  .testimonials-wrapper.style-two .owl-next,
  .testimonials-wrapper.style-two .owl-prev {
    color: #444;
    border-color: #444;
  }
  
  .testimonials-wrapper .owl-carousel .owl-stage-outer {
    padding-top: 50px;
  }
  
  .testimonial-block {
    position: relative;
  }
  
  .testimonial-block .inner-box {
    position: relative;
    padding: 0 30px 30px;
    background-color: #444;
  }
  
  .testimonial-block .inner-box .image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -50px;
    margin-bottom: 25px;
    display: inline-block;
  }
  
  .testimonial-block .inner-box .content {
    position: relative;
  }
  
  .testimonial-block .inner-box .content i {
    position: absolute;
    right: 0;
    top: -35px;
    font-size: 30px;
    font-style: italic;
    color: #da5e00;
  }
  
  .testimonial-block .inner-box .content .author-info {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #ff6b00;
  }
  
  .testimonial-block .inner-box .content span {
    position: relative;
    color: #aaa;
    font-size: 14px;
  }
  
  .testimonial-block .inner-box .content .text {
    position: relative;
    margin-top: 20px;
    color: #aaa;
    font-size: 15px;
  }
  
  .testimonials-wrapper .owl-nav .owl-next {
    right: auto;
  }
  
  .testimonials-wrapper .owl-carousel .owl-item img {
    background: #333;
  }
  
  .testimonials-wrapper .owl-theme .owl-nav [class *= owl-] {
    border: 2px solid #ff6b00;
    color: #ff6b00;
  }
  
  .owl-theme .owl-nav [class *= owl-]:hover {
    border-color: #da5e00 !important;
    color: #da5e00 !important;
    background: 0 0;
  }
  
  @media only screen and (max-width: 991px) {
    .testimonials-wrapper .owl-dots {
      display: block;
    }
  }


  .carousel-container {
    max-width: 1100px;
    margin: 1rem auto;
    position: relative;
    padding: 0 1rem;
}

.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.carousel-slide {
    flex: 0 0 50%; /* Show 2 slides on desktop */
    padding: 0.5rem;
    text-align: justify;
}

.project-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensure all cards are same height */
}

.video-container {
    position: relative;
    /* padding-bottom: 56.25%; */
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-info {
    padding: .75rem;
}

.project-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #666;
    line-height: 1.3;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: #fff;
}

.carousel-button.prev {
    left: 0.5rem;
}

.carousel-button.next {
    right: 0.5rem;
}

.carousel-button svg {
    width: 30px;
    height: 30px;
    fill: #ff6b00;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 15px;
    height: 10px;
    border-radius: 60%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: #ff6b00;
}
.logo{
  padding-left: 10px;
}
.logo img {
  padding-left: 10px;
  width: 120px; /* Adjust width as needed */
  height: auto;
  display: inline-block;
  vertical-align: middle;
 margin: -10px;
}
/* Mobile Styles */
@media (max-width: 768px) {
    .carousel-slide {
        block-size: 0 0 100%;
        width: auto;
        height: 50%;
    }

    .carousel-button {
        width: 32px;
        height: 32px;
    }

    .project-title {
        font-size: 1.25rem;
    }
    .logo img {
      width: 100px; /* Adjust width as needed */
      height: auto;
      display: inline-block;
      vertical-align: middle;
    }
    
}

@media (max-width: 768px) {
  .project-description {
      display: none;
  }
}


.nav-links {
  display: none;
}





/* Logo Styling */


/* Navbar Styling */
.nav-links {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Default state for navigation links (hidden on mobile) */
.nav-links {
  display: none;
}

/* Display navigation links when the toggle is active */
.nav-links.active {
  display: flex;
  position: absolute;
  top: 100%;
  /* left: 0; */
  right: 0;
  width: 50%;
  background-color: #ff6b00; /* Adjust as needed */
  z-index: 10;
}

.hamburger {
  cursor: pointer;
  font-size: 30px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  /* Show nav links and hide hamburger on desktop */
  .nav-links {
      display: flex;
      /* padding: 0%; */
  }
  .hamburger {
      display: none;
  }
}




/* additional */
/* Style for email link */
a.mail-link {
  font-weight: 600;
  position: relative;
  color: #333;
  text-decoration: none;
  transition: color .5s ease;
}

/* Underline effect */
a.mail-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ff6b00dd; /* Custom color for the underline */
  transition: width 0.3s ease;
}

/* Hover effect for color and underline animation */
a.mail-link:hover {
  color: #ff6b00; /* Change link color on hover */
}

a.mail-link:hover::after {
  width: 100%; /* Expands the underline */

}

