/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
}


header .navbar img{
    height:80px;
    width:80px;
}

header .navbar p{
    padding-top:10px;
}

header .navbar{
    height:70px;
}
.navbar p{
    font-size:20px;
    font-weight:bold;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.navbar .contact-box {
    text-align: center;
    padding: 9px;
    background: #e6f3ff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #F74E02;
    height:40px;
    width:160px;
    margin-right: 20px;
    padding-top:9px;
    border:2px solid black;
    padding-left: 0px;
    
  }

  .contact-box a{
    text-decoration: none;
    color:#F74E02;
  
  }

.navbar p span{
    color:#F74E02;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left:40px;
    padding-top:4px;
    padding-bottom:5px;
    box-shadow:0 4px 9px 2px gray;
    background: white;
    color: #009CDE;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #009CDE;
    font-size: 18px;
    transition: 0.3s;
    font-weight:bold;
   
}

.nav-links a:hover {
    color:#F74E02; 
    text-decoration: underline;
    font-weight:bold;
    
    
}

/* Icons */
.nav-icons a {
    color: #F74E02;
    font-size: 30px;
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s;
    margin-right:20px;
    background-color: whitesmoke;
}

.nav-icons a:hover {
    color:  #F74E02;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: darkblue;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #444;
        text-align: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}



.home .container{
    position: relative;
    background: url(homeimg.png);
    background-size: cover;
    margin-top:70px;
    height:450px;
    
}


.home .container .text{
    padding-top:150px;
    padding-left: 380px;
    font-size:59px;
    font-weight:bold;
    text-shadow:  2px 6px 7px rgba(0, 0, 0, 0.5); 
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0rem;
    top: 60%;
    left: 30%;
    z-index: 1;
  }

  .navbar ul li:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #009CDE;
    white-space: nowrap;
    margin-top:6px;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown-content2 {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0rem;
    top: 60%;
    left: 40%;
    z-index: 1;
  }

  .navbar ul li:hover .dropdown-content2 {
    display: block;
  }
  .navbar .nav-icons i{
    color:#009CDE;
  }

  .navbar .nav-icons i:hover{
    color:#F74E02;
  }

  .dropdown-content2 a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #009CDE;
    white-space: nowrap;
    margin-top:6px;
  }

  .dropdown-content2 a:hover {
    background-color: #f1f1f1;
  }

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.home .container .text {
    animation: slideDown 2s ease-in-out forwards;
    margin-left:0px;
    color:#F74E02;
}

.home .container .text span{
    color:#009CDE;
}

.home .container  button{
    font-size:20px;
    height:40px;
    width: 120px;
    border-radius: 6px;
    padding:2px;
    margin-left:730px;
    margin-top: 30px;
    font-weight:bold;
    border:4px solid black;
}

.home .container  button:hover{
    color:white;
    background-color: black;
}

.services {
    padding: 50px;
    background: whitesmoke;
}

.services h2 {
    font-size: 3em;
    color: #009CDE;
    margin-left:550px;
}

.services h2 span {
    color: #F74E02;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top:40px;
}

.service-box {
    position: relative;
    width: 300px;
    height: 150px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.service-box a{
    text-decoration: none;
}

.service-box i {
    font-size: 40px;
    color: #009CDE;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.service-box p {
    font-size: 16px;
    color: #F74E02;
    transition: all 0.4s ease   ;
    z-index: 2;
}

.service-box:hover p{
    color:#F74E02;
    
}

.service-box:hover {
    box-shadow: 0px 14px 10px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Hover Effect */
/* .service-box:hover {
    background: rgba(0, 0, 0, 0.6);
    color: white;
} */

.service-box:hover i {
    font-size:50px;
    color: black;
}

/* .service-box:hover p {
   font-size:0px;
    color: white;
    
} */


.products{
    background:url(productimg.png);
    background-size: cover;
    height:500px;
   
}



.products h2 {
    font-size: 3em;
    color: #009CDE;
    margin-left:600px;
    padding-top:20px;
    margin-top:20px;
}


.products h2 span {
    color: #F74E02;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top:80px;
}

.product-box {
    position: relative;
    width: 400px;
    height: 200px;
    background: rgb(0,0,0,0.7);
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    cursor: pointer;
  
}


.product-box:hover{
    width: 410px;
    height: 210px;
}

.product-box p {
    font-size: 40px;
    color:  #F74E02;
    transition: all 1s ease;
    z-index: 2;
   
}

.product-box a{
    color:white;
    text-decoration: none;
    font-size:30px;
}
.product-box h3 {
    font-size:0px;
    color:white;
}

.product-box:hover {
    color: #F74E02;
    
}
.product-container:hover {
    
    color: #F74E02;
}

/* .product-box:hover p {
    font-size:0px;
    color: black;
}

.product-box:hover h3 {
   font-size:20px;
    color: white;
    text-align: left;
    
} */


/* 
.contact-form h2 {
    font-size: 3em;
    color: #333;
    margin-left:600px;
    padding-top:20px;
} */

.contact-form h2{
    color: #009CDE;
}
.contact-form h2 span {
    color: #F74E02;
}

.contact-form {
    max-width: 50%;
    margin-left:400px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    margin-top:20px;
    margin-bottom:30px;
}

.contact-form h2 {
    margin-bottom: 20px;
    text-align:center;
    font-size:40px;
}

/* .contact-form form {
    display: flex;
    flex-direction: row;
} */

.contact-form label {
    margin-bottom: 8px;
    text-align: left;
}

.contact-form input, .contact-form select, .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form .box1{
   display:flex;
   flex-direction: column;
}

.contact-form button {
    padding: 10px;
    background-color: #009CDE;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left:270px;
    width:100px;
    
}

.contact-form button:hover {
    background-color: #F74E02;
}


/* Footer Styling */
footer {
    background: url(bgfooter.png);
    background-size: cover;
     background-color: rgb(223, 223, 223); 
    color:black;
    padding: 10px 0;
    text-align: left;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9); */

}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 9000px;
    margin: auto;
}

.footer-container img{
    height: 100px;
    width:100px;
}

.footer-container div {
    width: 250px;
    margin: 10px;
    padding-top: 30px;
}

.footer-logo h2 {
    color: #009CDE;
}

.footer-logo h2 span {
    color: #F74E02;
}

.footer-logo p{
    font-weight:600;
   
}

.footer-links  h3{
    padding-left:40px;
}
.footer-links ul {
    /* list-style: none; */
    padding-top: 10px;
    padding-left:40px;
    color:#009CDE;
   
    
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
  
    
}

footer .footer-logo h3{
    color:#009CDE;
    font-size: 30px;
    font-weight: bold;
}

footer h3 span{
        color:#F74E02;
    
}

.footer-links ul li a:hover {
    color: #F74E02;
    text-decoration: underline;
}

.footer-contact p i{
    color:#F74E02;
    font-size:20px;
}


.footer-social a i{
    color:#F74E02;
    font-size:20px;
}

.footer-contact p,
.footer-social a {
    color: black;
    padding-top:20px;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #009CDE;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 30px;
    text-align: center;
}


.footer-bottom span{
   color:black;
   font-weight: bold;
}

.footer-contact a{
    text-decoration: none;
    color:black;
    margin-left: 10px;
}

.footer-contact a:hover{
    text-decoration: underline;
    color:#F74E02;
    margin-left: 10px;
}