/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(
                45deg, /* Direction of the gradient */
                #14213D, /* Red */
                #1a2d55, /* Orange */
                #3a4e79, /* Yellow */
                #8498c3  /* Green */
            );
}

header {
    background-color: black;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
}

h2 {
    font-size: 36px;    
    font-weight: bold;
    color: white;
}

.about-us {
    margin: 50px;
}

.service-content h2 {
    font-size: 36px;    
    font-weight: bold;
    color: white;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.logo {
    width: 60px;
    height: 60px;
    margin-left: 25px;
    margin-right: -380px;
    border-radius: 15px; /* This creates the curved border */
    overflow: hidden;   
}


.company-name {
    font-size: 34px;
    font-weight: 700;
    color: white;     
    text-decoration: none;
}


.nav-links {
    margin-right: 20px;
}

.nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.nav-links a:hover{
    color: #ee6c4d;
}

.nav-links.active{
    color: #ee6c4d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background-color: white;
    height: 3px;
    margin: 4px 0;
    width: 25px;
}

/* Sections Styling */
section {
    padding: 0em;
}

button {
    background-color: #4CAF50;          
    color: white;            
    padding: 12px 28px;        
    text-align: center;      
    font-size: 20px;      
    font-weight: bold;
    border-radius: 8px;        
    cursor: pointer;
    border: #3a4e79;  
    box-shadow: rgba(114, 114, 128, 0.83) 0px 50px 100px -20px, rgba(114, 114, 128, 0.83) 0px 30px 60px -30px, rgba(114, 114, 128, 0.83) 0px -2px 6px 0px inset;
}

button:hover {
    background-color: #ee6c4d;
}

.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;    
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px;
    padding-right: 35px;
    padding-left: 35px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin: 2px;
    padding: 20px;
}


.hero-content p{
    font-size: 22px;
    color: #d8d7d7;
}

h1 {
    font-size: 50px;
    font-weight: 900;
    color: white;
    text-align: center;
    padding: 15px;
    padding-top: 60px;
}
            

.about-section, .services-section, .gallery-section, .contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-left: 35px;
    margin-right: 35px;
}


p {
    font-size: 22px;
    color: #f6eded;;
}


.about-image, .services-image, .contact-image, .gallery-image {
    width: 500px;
    height: 350px;
    margin: 20px;
    border-radius: 15px; 
    box-shadow: 4.0px 8.0px 8.0px hsla(229, 25%, 47%, 0.909);
    overflow: hidden;
}

.about-content, .services-content, .contact-content, .gallery-content {
    flex: 1;
    padding: 20px;
}


.about-image img, .services-image img, .contact-image img, .gallery-image img {
    width: 100%;
    height: auto;
}

/*Our Services page Styles*/
.service-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-left: 35px;
    margin-right: 35px;
    background: #7489bb;
}

.service-image {    
    margin: 20px;
    overflow: hidden;
}

.service-content {
    flex: 1;
    padding: 20px;
}

.service-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;       
    box-shadow: 2.0px 4.0px 2.0px 0.0px hsla(240, 1%, 26%, 0.909);
    object-fit: cover;
}


/*iFrame Container*/
.iframe-container {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

iframe {
    width: 100%;
    max-width: 640px;
    height: 849px;
    border: none;
    overflow: hidden;
    box-sizing: border-box;
}


/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 35px;
    margin-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer navigation links (aligned left) */
.footer-nav-links {
    display: flex;
    align-items: center;
}

.footer-nav-links :hover {
    color: #ee6c4d;
}

.footer-nav-links a {
    color: white;
    margin-right: 15px;
    margin-left: 25px;
    text-decoration: none;
    position: relative;
}

.footer-nav-links a::after {
    content: " | ";
    position: absolute;
    right: -20px; /* Adjust based on your spacing needs */
    color: white;
    font-size: 18px; /* Adjust based on your design */
}

.footer-nav-links a:last-child::after {
    content: ""; /* Remove the divider after the last link */
}

/* Social media icons (aligned right) */
.social-media {
    display: flex;
    align-items: center;
}

.social-media a {
    margin-left: 15px;
}

.social-media img {
    width: 24px;
    height: 24px;
    margin-left: 5px;
    margin-right: 15px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 8px;
}

.hamburger-menu span {
    width: 30px;
    height: 4px;
    background-color: white;
    display: block;
}

/* Fullscreen Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 9999;
}

.mobile-menu.active {
    right: 0;
}

/* Close icon in the mobile menu */
.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 70px;
    cursor: pointer;
}

/* Mobile navigation links inside the fullscreen menu */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    font-weight: bold;
}

.mobile-nav-links a {
    font-size: 24px;
    text-decoration: none;
    color: white;
    padding: 10px;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #ee6c4d;
}

li {
    font-size: 22px;
    padding-left: 6px;
    color:  #f6eded;
    padding: 6px;
    text-align: start;
}

ul {
    padding-left: 15px;
    text-align: start;
}

span {
    color: #f6eded;
    text-align: start;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: none;
}
  
.whatsapp-icon:active {
    transform: scale(0.9);
}

.whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}



/* Gallery CSS */
.trans
{
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.top {
    display: flex;
    flex-wrap: wrap;
    width: 80vw;
    height: auto; /* Let the height adapt based on content */
    margin: 10vh auto; /* Centering */
    justify-content: space-between; /* Adds spacing between rows */
}

.top ul
{
  list-style: none;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.top ul li
{
  position: relative;
  float: left;
  width: 25%;
  height: 25%;
  overflow: hidden;
}

.top ul li::before
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7a6767;
  content: '';
  color: white;
  opacity: 0.2;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  
}
.top ul li:hover::before
{
  opacity: 0;
  background-color: rgba(0,0,0,0.90);
}
.top ul li img
{
  width: 100%;
  height: 10vw;;
  overflow: hidden;
  border-radius: 10px;
}
.lightbox
{
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.75);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}
.lightbox img
{
  max-width: 70%;
  max-height: 60%;
  position: relative;
  top: -100%;
  /* Transition */
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}
.lightbox:target
{
  outline: none;
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
}
.lightbox:target img
{
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.clients-section {
    text-align: center;
}

.clients-section h2 {
    position: relative;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 70px;
    margin-top: 100px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* space between logos */
}

.client-logos img {
    max-width: 140px; /* adjust the logo size */
    height: auto;
    border-radius: 10px;
}

.heading {
    position: relative;
    display: inline-block;
    padding-bottom: 25px; /* Adjust as needed */
}

.heading::after {
    content: '';
    display: block;
    width: 40%; /* Set the line width to 40% */
    height: 8px; /* Set the line thickness */
    background-color: white; /* Adjust color as needed */
    position: absolute;
    left: 50%; /* Align the line to the center */
    transform: translateX(-50%); /* Correct the centering */
    bottom: 0;
    border-radius: 8px;
}




/* Responsive for Mobile */
@media (max-width: 768px) {

    /* Hide the desktop navigation links */
    .nav-links {
        display: none;
    }

    /* Show the hamburger menu */
    .hamburger-menu {
        display: flex;
        text-align: center;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        padding: 1em;
    }

    .company-name {
        font-size: 28px;
        font-weight: bold;
        margin-left: 10px;
    }

    .logo {
        width: 70px;
        height: 60px;
        border-radius: 15px; /* This creates the curved border */
        overflow: hidden;   
        margin-right: 20px;
    }

    .hero img {
        width: 100%;
        height: 600px;  
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 26px;
    }

    .hero-content p{
        font-size: 18px;
        color: #d8d7d7;
    }
    
    
    h1 {
        font-size: 42px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 32px;
    }

    .about-image, .services-image, .contact-image, .gallery-image {
        width: 360px;
        height: 250px;
        margin: 20px;
        border-radius: 15px; 
        box-shadow: 4.0px 8.0px 8.0px hsla(229, 25%, 47%, 0.909);
        overflow: hidden;
    }

    .about-content, .services-content, .contact-content, .gallery-content {
        flex: 1;
        padding: 20px;
        order: 2;
    }
    
    .about-section, .services-section, .contact-section, .gallery-section {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .nav-container.active .nav-links {
        display: flex;
    }

    /* Footer navigation links (aligned left) */
    .footer-container {
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    .footer-nav-links {
        display: grid;
        padding: 5px;
        gap: 16px;
        text-align: center;
        font-size: 20px;
    }

    .footer-nav-links a::after {
        content: "";
        position: absolute;
        color: white;
        font-size: 18px; /* Adjust based on your design */
    }

    .social-media {
        display: block;
        align-items: center;
        text-align: center;
        margin-top: 20px;

    }

    .line {
        width: 100%; /* Adjust width as needed */
        border: none;
        border-top: 1px solid #a7a4a4; /* Thin horizontal line */
        margin: 10px 0; /* Space between the elements and the line */
      }


    /*Our Services Styles*/
    .service-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        margin-top: 50px;
        margin-left: 15px;
        margin-right: 15px;
        background: #8498c3;
    }

    .service-image {    
        margin: 20px;
        overflow: hidden;
        text-align: center;
        padding-top: 30px;
    }

    p {
        padding-bottom: 15px;
        text-align: inherit;
        color: #f6eded;
        font-size: 20px;
        margin: 2px;
    }

    .service-content {
        flex: 1;
        padding: 20px;
        text-align: center;
    }

    .service-image img {
        width: 250px;
        height: 250px;
        border-radius: 50%;    
        box-shadow: 2.0px 4.0px 2.0px 0.0px hsla(240, 1%, 26%, 0.909);
        object-fit: cover;
    }

   li {
    font-size: 20px;
   }

   .whatsapp-icon {
       display: block;  
   }

   .top ul li {
    margin-top: 5px;
    width: 50%;
    height: auto;
  }

  .top ul li img {
    width: 100%;
    height: 15vw;;
    overflow: hidden;
    }

    .top ul
    {
    list-style: none;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: border-box;
    margin-top: -40px;
    }

    .client-logos img {
        max-width: 70px; /* adjust the logo size */
        height: auto;
        border-radius: 10px;
    }   

    
}
