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

:root {
  --primary-color: #fc5d66;
  --secondary-color: #22f7ec;
  --light-color: #f9fafb;
  --dark-color: #272d35;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background-color: #e0dfdfcb;
  
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Utility Classes */


.container-sm {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  
}

.btn {
  display: inline-block;
  padding: 1.3rem 2.3rem;
  border: 3px solid blue;
  border-radius: 32px;
  background-color: #52a7f7a2;
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: lightblue;
  color: #000000;
  border-color: #002cf0;
}

/* Text Classes */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.section {
  margin: 4rem 0;
}

/* Section Header */
.section-header {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--dark-color);
}

.heading-border {
  width: 64px;
  height: 4px;
  background: rgb(90, 197, 240);
  margin: 0 auto 2rem;
}

/* Card */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.75rem;

  box-shadow: 0 17px 12px 0 rgba(61, 116, 136, 0.3);
}

/* Navbar */
.navbar {
  background: transparent;
  color: rgba(175, 225, 240, 0.596);
  padding: 1rem 2rem;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: background-color ease-in-out;
  
}

.navbar.navbar-scroll {
  background-color: rgba(50, 183, 216, 0.548);
  backdrop-filter: blur(10px);
  position: fixed;
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  
}

.navbar img {
  width: 150px;
  height: 55px;
}

.navbar .main-menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  
  
}

.navbar a {
  color: #0e0e0e;
}

.navbar a:hover {
  color: cyan;
}

.navbar i {
  font-size: 1.5rem;
  
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  
}

.navbar .mobile-menu-toggle {
  color: #000000;
  cursor: pointer;
  
}

.navbar .mobile-menu-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(50, 183, 216, 10);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  height: 600px;
  
}

.navbar .mobile-menu-items.active {
  transform: translateX(0);
  
}

.navbar .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  
  font-size: 1.2rem;
}

/* Hero */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.37)),
    url(/assets/img/mills.jpg);
    
  padding: 11.5rem 2rem 8rem;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  background-attachment: fixed;
}

.hero .hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding-bottom: 8rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero img {
  width: 100%;
  margin-right: -100px;
}

.hero .frame-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 105px;
}

/* Chapter Cards */
.chapter-cards {
 
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 0 4rem;
  border-width: 900px;
  
}

.chapter-cards img {
  width: 100px;
  margin-top: 1rem;
 border-radius: 150px;
 
 }
 

.chapter-cards h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;

}

.chapter-cards p {
  max-width: 1300px;
}


/* Takeaways */
.takeaways-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.5rem 0;
}

.takeaways-cards .card {
  flex-direction: row;
  text-align: left;
  
}

.takeaways-cards .card i {
  margin-right: 1rem;
}



/* Details */
.details .details-flex {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.details img {
  width: 100%;
  max-width: 500px;
}

.details h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.details .heading-border {
  margin: 0;
}

.details p {
  margin: 1rem 0 2rem;
}

/* Social */
.social {
  background: var(--dark-color);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0;
}

.social a,
.footer a {
  color: #fff;
}

.social a:hover,
.footer a:hover {
  color: var(--secondary-color);
}

.social p {
  margin-bottom: 2rem;
}

.social .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: #fff;
  border-top: 1px solid #384653;
  padding: 0.5rem 2rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

/* Inner Header */
.inner-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.37)),
    url(/assets/img/p4.jpg);

  height: 400px;
  padding-top: 18rem;
  color: #fff;
  background-attachment: fixed;
}

.inner-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form p {
  margin-bottom: 3rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  font-family: inherit;
  font-size: medium;
  width: 100%;
  margin: 1.5rem 0;
  border: 1px solid #110d0d;
  padding: 1.2rem 1rem;
}

.contact-form textarea {
  height: 200px;
}

.contact-form .btn {
  display: block;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  margin: 0 auto;
  background-color: rgba(50, 183, 216, 0.548);
}

/* Location */
.location h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location p {
  margin-bottom: 2rem;
}

.location .map {
  overflow: hidden;
  position: relative;
  height: 0;
  margin-bottom: 3rem;
  padding-bottom: 50%;
  border-radius: 0.25rem;
}

.location .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}



/* Media Queries */
@media (max-width: 1200px) {
  .hero .hero-flex {
    gap: 2rem;
  }

  .hero img {
    max-width: 500px;
    margin-right: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .topics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero .hero-flex {
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .hero img {
    max-width: 600px;
    margin-top: 2rem;
  }

  .topics {
    grid-template-columns: repeat(2, 1fr);
  }

 
  .takeaways-cards {
    grid-template-columns: 1fr;
  }

  .details-flex,
  .details + .details .details-flex,
  .stats .stats-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 995px) {
  .main-menu-items,
  .info-left {
    display: none;
  }

  .navbar .mobile-menu {
    display: block;
  }

  .navbar .mobile-menu-toggle {
    display: block;
    padding: 10px;
  }

  .info-container {
    flex-direction: column;
    
  }

  .info-content {
    padding: 2rem;
  }

  .info-content h2 {
    font-size: 1.5rem;
  }

  .info-content p {
    font-size: 1rem;
  }

  .social .social-icons {
    flex-wrap: wrap;
  }

  .social p {
    font-size: 1.2rem;
  }

  .social i {
    font-size: 2rem;
  }

  .footer {
    padding: 0.5rem 1rem;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero img {
    max-width: 350px;
  }

  .topics {
    grid-template-columns: 1fr;
  }

  .summary .container {
    padding: 0;
  }

  .stats .stats-numbers {
    flex-direction: column;
  }

  .newsletter h2 {
    font-size: 1.5rem;
  }

  .newsletter p {
    display: none;
  }
}

/*********************************************************************************/
/*                          ABOUT PAGE                                  */
/*********************************************************************************/

.button
{
  display: inline-block;
  padding: 1em 2em 1em 2em;
  letter-spacing: 0.10em;
  margin-top: 2em;
  padding: 1.40em 3em;
  background: #2651a8;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  color: #FFF;
}

.button-alt
{
  padding: 1em 2em;
  border-color: rgba(0,0,0,.8);
  color: #FFF;
}
.button:hover {
  background: lightblue;
  color: #000000;
  border-color: #002cf0;
  }
/*********************************************************************************/
/* Welcome                                                                       */
/*********************************************************************************/

#welcome
{
  background: #111111 url(/assets/img/header-bg.jpg) no-repeat center;
  padding: 11.5rem 2rem 8rem;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  background-attachment: fixed;
  bottom: -10vh;
}


#welcome .container
{
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1200px;
  padding:2 20px 100px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  
  
}


#welcome a
{
  color: rgba(255,255,255,1);
  
 
}

#welcome .button
{
  background: #FFF;
  color: #2651a8;
}
#welcome .button:hover {
  background: lightblue;
  color: #000000;
  border-color: #002cf0;
  }



/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	
/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/

	.title
	{
		margin-bottom: -1em;
	}
	
	.title h2
	{
		font-size: 2.7em;
	}
	
	.title .byline
	{
		font-size: 1.3em;
		color: rgba(255,255,255,0.60);
	}



  /*********************************************************************************/
/* Extra                                                                         */
/*********************************************************************************/

	#three-column
	{
		text-align: center;
		color: rgba(0,0,0,0.6);
	}

	#three-column .fa
	{
		display: block;
		padding: 1em 0em;
		color: rgba(0,0,0,1);
		font-size: 2em;
	}
	
	#three-column .title h2
	{
		font-weight: bold;
		color: rgba(0,0,0,0.8);
	}

	#three-column .title .byline
	{
		text-align: center;
		color: rgba(0,0,0,.5);
    max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
	}
/*WAVEEE IN BODY*/
  /* start preloader */
.preloader
{
  
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: none repeat scroll 0 0 #ffffff;
}
.sk-spinner-wave.sk-spinner 
{
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px; 
  
  }
.sk-spinner-wave div 
{
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
       -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
               animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
       
  }
.sk-spinner-wave .sk-rect2 
{
        -webkit-animation-delay: -1.1s;
                animation-delay: -1.1s; 
    }
.sk-spinner-wave .sk-rect3 
{
        -webkit-animation-delay: -1s;
                animation-delay: -1s; 
   }
.sk-spinner-wave .sk-rect4 
{
        -webkit-animation-delay: -0.9s;
                animation-delay: -0.9s;
   }
.sk-spinner-wave .sk-rect5 
{
        -webkit-animation-delay: -0.8s;
                animation-delay: -0.8s; 
   }

@-webkit-keyframes sk-waveStretchDelay {
0%, 40%, 100% {
          -webkit-transform: scaleY(0.4);
                  transform: scaleY(0.4); }

20% {
          -webkit-transform: scaleY(1);
                  transform: scaleY(1); } }

@keyframes sk-waveStretchDelay {
0%, 40%, 100% {
          -webkit-transform: scaleY(0.4);
                  transform: scaleY(0.4); }

20% {
          -webkit-transform: scaleY(1);
                  transform: scaleY(1); } }
/* end preloader */
/*//////////////////////////////////////PROJECT PAGE/////////////////////////////////////////////////////////*/



* {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', arial, sans-serif;
}
ul {
list-style: none;
}


.section-heading h4 {
text-align: center;
font-size: 17px;
text-transform: uppercase;
font-weight: 700;
color: #fffafa;
}

.section-heading .line-dec {
width: 60px;
height: 3px;
background-color: #eceaea;
margin: 0 auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  height: 80px;
  background-color:transparent;  
  
  text-align: center;
  line-height: 40px;
}




/* HERO SLIDER */

.slide-caption {
color: #fff;
}

.slide-caption span {
font-size: 14px;
text-transform: uppercase;
}

.slide-caption h2 {
font-size: 36px;
text-transform: uppercase;
font-weight: 900;
}

.slide-caption p {
font-size: 13px;
letter-spacing: 0.25px;
line-height: 24px;
}

ul.cd-hero-slider {
margin-bottom: 0px!important;

overflow-x: hidden;
position: relative;
background-attachment: fixed;
background-image: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.37)),
  url(/assets/img/projectsbgg.jpg);
}

/* WHAT WE DO */

#about1 {
background-color: #c9c9c9d8;

}
#about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.89), rgba(0, 0, 0, 0.37)), url(/assets/img/powermachine.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    color: #f8f4f4;
    margin-bottom: -10vh;
}
#about .section-heading {
margin-bottom: 60px;
}


.service-item {

background-color: #fff;
text-align: center;

transition: all 0.7s;
box-shadow: 10px 10px 15px #cdcdcd;
margin:50 160px;
  box-shadow: 0 17px 12px 0 rgba(97, 190, 224, 0.3);
margin-bottom: 2em;
}


.service-item h4 {
font-size: 16px;
font-weight: 700;
letter-spacing: 0.5px;
margin-bottom: 15px;
margin-top: 25px;
}



.first-service .icon {
background-image: url();
height: 220px;
width: 220px;
display: inline-block;
}

.first-service:hover .icon {
background-image: url();
height: 220px;
width: 220px;
}

.second-service .icon {
background-image: url(/assets/images/output.jpg);
height: 220px;
width: 220px;
display: inline-block;
}

.second-service:hover .icon {
background-image: url(/assets/images/project22.jpg);
height: 220px;
width: 220px;
}


.third-service .icon {
background-image: url(/assets/images/istockphoto-2151247502-612x612.webp);
height: 220px;
width: 220px;
display: inline-block;
}

.third-service:hover .icon {
background-image: url(/assets/images/project33.jpg);
height: 220px;
width: 220px;
}

.fourth-service .icon {
  background-image: url(/assets/images/project4.jpg);
  height: 220px;
  width: 220px;
  display: inline-block;
  }
  
  .fourth-service:hover .icon {
  background-image: url(/assets/images/project44.jpg);
  height: 220px;
  width: 220px;
  }
 

#what-we-do {
background-image: linear-gradient(rgba(0, 0, 0, 0.807), rgba(0, 0, 0, 0.848)),
  url(/assets/img/header-bg.jpg);
width: 100%;
background-size: cover;
background-repeat: no-repeat;
padding: 80px 0px;
margin-bottom: -10vh;
color: #fff;
overflow-x: hidden;
position: relative;
background-attachment: fixed;
}

#what-we-do .right-image img {
width: 100%;

overflow: hidden;
}

#what-we-do h4 {
font-size: 24px;
font-weight: 700;
letter-spacing: 0.5px;
line-height: 30px;
margin-bottom: 25px;
}

#what-we-do p {
margin-bottom: 30px;
color: #fff;
}

#what-we-do ul li {
display: inline-block;
margin-right: 15px;
margin-bottom: 15px;
}
 
 .img-responsive {
  width: 140%;       /* Increases the size of the image */
  max-width: none;   /* Prevent Bootstrap from capping width */
 
  margin-left:-10%; /* Center the image if it grows beyond the container */
}
 .img-responsive2 {
  width: 20%;       /* Increases the size of the image */
  max-width: none;   /* Prevent Bootstrap from capping width */
 
  margin-left:-10%; /* Center the image if it grows beyond the container */
}
 .img-responsive3 {
  width: 67%;       /* Increases the size of the image */
  max-width: none;   /* Prevent Bootstrap from capping width */
 
  margin-left:-10%; /* Center the image if it grows beyond the container */
}
 .img-responsive4 {
  width: 120%;       /* Increases the size of the image */
  max-width: none;   /* Prevent Bootstrap from capping width */
 
  margin-left:-10%; /* Center the image if it grows beyond the container */
}







#home {
  position: relative;
 /* Your background image */
  background-size: cover;
 
 
}

#home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-image: url('/assets/img/home-bg.jpg') /* Dark and semi-transparent */
 
}


.service-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto; /* center image horizontally */
  border-radius: 10px;
  border: 2px solid #ddd;
  padding: 5px;
  transition: transform 0.3s ease;
  background-color: #f9f9f9;
}
.service-img:hover {
  transform: scale(1.05);
}
.service-item {
  background: #949494;
  padding: 25px 15px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center; /* ensures h4 and p are centered */
}
/* General Styles */


/* Background Wrapper */
.gallery-wrapper {
    background: #5d7695; /* Darkish Blue */
    padding: 60px 0; /* Adds space around the gallery */
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.486), rgb(26, 15, 15)), url("/assets/img/Beams.jpg");

   
}



/* Optional Overlay for Better Readability */
.gallery-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}
/* Gallery Section */
.gallery-section {
    background: white;
    padding: 40px 20px;
    max-width: 1000px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Gallery Header */
.gallery-header {
    margin-bottom: 20px;
}

.gallery-header h1 {
    font-size: 28px;
    color: #333;
}

.gallery-header p {
    font-size: 16px;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 35px;
    padding: 20px;
    justify-content: center;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;  /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures images fill the area without distortion */
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}
.lightbox {
    z-index: 1000; /* Ensure it's above all content */
}
/* Lightbox Popup */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}
.extra-info-content {
    max-width: 700px; /* Adjust width for better readability */
    margin: 0 auto; /* Centers the content */
    text-align: center;
    padding: 20px 0; /* Adds space between sections */
}

.extra-info-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.extra-info-content p {
    font-size: 16px;
    color: #070606;
    line-height: 1.6; /* Improves readability */
    padding: 0 20px; /* Adds side spacing */
}
