/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}
@media (max-width: 480px) {
    .logo img {
        max-width: 120px;
    }

    .hamburger {
        font-size: 26px;
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* logo */

.logo:hover{
    border-bottom: 1px solid rgba(255, 255, 255, 0.151);
    border-radius: 4px;
    cursor: pointer;
    
}
.logo img {
    max-width: 150px;
    height:89px;
    /* position: relative;
    top: -19pxpx; */

    
}



/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff2f200;
    color: rgb(0, 0, 0);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
#focus{
    display: inline;
    font-size:22px;
    font-weight:bold;
    color: rgb(42, 188, 42);
}


/* Logo */
.logo {
    font-size: 21px;
    font-weight: bold;
}

/* Navigation Menu */
nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
    /* border: 1px solid rgb(3, 2, 2); */
    
    
}
nav ul li:hover{
    background-color: rgb(184, 182, 194);
    transition: 2s;
    
    
}
nav ul li a:hover{
    color: rgb(0, 0, 0);
    
}
#home{
    margin-top:50px;
}




nav ul li a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 8px;
}

/* Contact Info */
.contact-info {
    display: flex;
    gap: 15px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    left: 10px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding:7px;
    margin-right:5px;
    margin-top: 8px;
    margin-left: 10px
}

.anchar i{
    display: none;

}


/* Responsive Styles */
@media screen and (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #222;
        text-align: center;
        transition: all 0.3s ease-in-out;
        background-color: #09082df3;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 15px 0;
    }
    nav ul li a{
        color: white;
    }

    .hamburger {
        display: block;
    }

    .contact-info,
    .social-icons {
        display: none;
    }
    .anchar i{
        display: block;
    }
    /* .logo{
        width: 80px;
    } */
    
    }


/* Show menu when active */
nav.active {
    display: flex;
    margin-top: 50px;
}


/* //whatsapp and facebook */
#social-icons {
    position: fixed;
    /* bottom: 50%; */
    right: 0px;
    display: flex;
    left: 0px;
    top: 50%;
    justify-content: space-between;
    z-index: 10;
  
}
#social-icons a {
    display: block;
    width: 54px;
    height: 55px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
   
}
#social-icons>#link2{
margin-right: 10px;
}
#social-icons>#link1{
    margin-left: 10px;
    }

#social-icons a:hover {
    transform: scale(1.1);
}
#social-icons img {
    width: 30px;
    height: 30px;
}
/* Sticky Header */
header.sticky {
    position: fixed;
    top:0px;
    width: 100%;
    background: rgb(232, 224, 209);
    padding: 10px 20px;
    z-index: 1000;
    color: rgb(0, 0, 0);
    
   
}
/* about */


#home{
    margin-top:50px;
}

.text p {
    text-align: justify; 
    line-height: 1.7; 
    word-wrap: break-word; 
}
.team-member:hover h3,
.team-member:hover p {
    opacity: 0;
}
.team-member:hover {
    transform: rotateY(180deg);
}

.team-member h3, .team-member p {
    transition: opacity 0.3s ease;
}
.image img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


body {
    font-family: Arial, sans-serif; /* Default font */
}

/* Apply different font styles */
h1 {
    font-family: 'Georgia', serif; /* Example for headings */
}

p {
    font-family: 'Times New Roman', Times, serif; /* Example for paragraphs */
    font-size: larger;
}


/* Nav styles */
#nav {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: black;
    margin-top: 150px;
    }

#nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    margin-top: 6px;
    height: 50px;
}

#nav ul li {
    margin: 0 2rem;  /* Space between items */
}

#nav ul li a {
    color: black;
    text-decoration: none;
    font-size: larger; 
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    transition: color 0.3s;
    display: inline-block;
}

/* Hover effect */
#nav ul li a:hover {
    color: #f39c12;
}

/* Keyframes for typing effect */
@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Keyframes for blink effect */
@keyframes blink {
    50% {
        border-color: transparent;
    }
    100% {
        border-color: #fff;
    }
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
    section {
        display: block;  
    }

    #nav ul {
        flex-direction: column;  
    }
} */


.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    
}

.text {
    flex: 1;
    padding-right: 20px;
}

.image {
    flex: 1;
    text-align: center;
}

.image img {
   
    height: 300px;
    
}

/* @media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: flex-start;
    }

    .text {
        padding-right: 0;
    }

    .image img {
        width: 100%;
    }
} */


section {
    padding: 3rem 5%;
    text-align: center;
}

.content {
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
    /* gap: 20px; */
}

.content img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Initial state of the image (hidden and transparent) */
.fade-in-image {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    width: 80%; /* Adjust size as needed */
}

/* When the image comes into view (animation triggered by class) */
.fade-in-image.visible {
    opacity: 1;
}
/* Initial state (small and slightly transparent) */
.zoom-in-image {
    transform: scale(0.5);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

/* When the image comes into view (animation triggered by class) */
.zoom-in-image.visible {
    transform: scale(1);
    opacity: 1;
}
.text {
    width: 100%;
}

h2 {
    color: #333;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.team-member img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member:hover {
    transform: scale(1.05);
}

button {
    background: #f39c12;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
    border-radius: 5px;
}

button:hover {
    background: #e67e22;
}
#mission{
    margin-top: 120px;
}
#scrollUp, #scrollDown {
    position: fixed;
    right: 20px;
    background: none; 
    color: lightgreen;  
    border: none;
    font-size: 40px; 
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}


#scrollUp {
    bottom: 70px;
    display: none; 
}


#scrollDown {
    bottom: 20px;
}


#scrollUp:hover, #scrollDown:hover {
    opacity:0.6;
}
/* Default styles */
#nav {
    background-color: #333;
    padding: 10px;
}

#nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.image img {
    max-width: 100%;
    height: auto;
}

/* Media Query for Tablets */
@media screen and (max-width: 768px) {
    #nav ul {
        flex-direction: column;
       
    }
    
    .content {
        flex-direction: column;
        
    }
    
    .text {
        padding: 10px;
    }
}

/* Media Query for Mobile Devices */
@media screen and (max-width: 768px) {
    #nav ul {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    
    #nav ul li {
        display: block;
        padding: 10px;
    }
    
    .content {
        flex-direction: column;
        text-align: center;
    }
    
    .image img {
        width: 100%;
    }
}

/* footer */



footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: small;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
/* Default Style */
.footer-section ul li {
    list-style: none;
    font-size: 16px;
    padding: 5px 0;
    transition: 0.3s ease-in-out;
}

/* Hover Effect for Products & Services */
.footer-section ul li:hover {
    color: white; /* Text Color on Hover */
    background-color: #0077B5; /* Change Background Color */
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}


.footer-section {
    width: 22%;
    min-width: 250px;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffcc00;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-bottom {
    margin-top: 20px;
    padding: 10px;
    background-color: #222;
    font-size: 14px;
}

.social-media {
    text-align: center;
}

.social-media a {
    display: inline-block;
    margin: 5px;
    color: white;
    font-size: 22px;
    padding: 8px;
    border-radius: 50%;
    background-color: #555;
    transition: 0.3s;
}

.social-media a:hover {
    background-color: #ffcc00;
    color: black;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* Center the social media icons */
.social-media {
    text-align: center;
    margin-top: 10px;
}

/* Style the icons */
.social-media a {
    display: inline-block;
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 17px;
    text-align: center;
    border-radius: 50%;
    color: white;
    margin: 5px;
    transition: 0.3s ease-in-out;
}

/* Set background colors */
.social-media .facebook { background-color: #1877F2; } /* Facebook Blue */
.social-media .twitter { background-color: #000000; } /* Twitter (X) Black */
.social-media .linkedin { background-color: #0077B5; } /* LinkedIn Blue */
.social-media .whatsapp { background-color: #25D366; } /* WhatsApp Green */
.social-media .youtube { background-color: #FF0000; } /* YouTube Red */

/* Hover effect */
.social-media a:hover {
    opacity: 0.7;
    transform: scale(1.1);
}