/* ======= General Reset ======= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
  background-color:#173559;
  color: #D6E6FF;
}
/* image styling*/
#header-logo{
  border-radius: 50px;
  width: 50px;
  height: 50px;
  float: left;
  margin-top: 5px;
}
#intro{
  font-size:30px;
  text-align: center;
}
img{
  width:30%;
  float: right ;
  border-radius:10px;
}

/* ======= Header Styling ======= */
header {
    position: relative;
    width: 100%;
    background-color: #000000;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ======= Hamburger Menu Styling ======= */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 5px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* ======= Side Navigation Styling ======= */
#side-nav {
    position: fixed;
    top: 0;
    left: -200px; /* Initially hidden */
    width: 200px;
    height: 100vh;
    background-color: silver;
    padding-top: 50px;
    transition: 0.3s;
    display: none; /* Ensures menu is hidden initially */
}

#side-nav ul {
    list-style: none;
    padding: 0;
}

#side-nav ul li {
    padding: 15px;
    text-align: center;
}

#side-nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: 0.3s;
}

#side-nav ul li a:hover {
    background-color: #769366;
    border-radius: 5px;
}

/* ======= Active Class (When menu is open) ======= */
#side-nav.active {
    left: 0;
    display: block; /* Make sure it's visible when active */
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    #side-nav {
        width: 200px;
    }

    #side-nav ul li a {
        font-size: 16px;
    }

    .hamburger {
        width: 35px;
        height: 25px;
    }

    .hamburger span {
        height: 4px;
    }
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px auto;
    border-radius: 10px;
    width: 80%;
}

.how-it-works h2 {
    font-size: 2rem;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.step {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
    
    /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1000;
}

/* Hover and Click Effects */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1000;
}

/* Hover and Click Effects */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Icon */
.whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
}
        .contact-links a {
            text-decoration: none;
            color: #ffffff;
            background-color: #0077b5; /* LinkedIn color */
            padding: 3px 4px;
            margin: 5px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .contact-links a:hover {
            background-color: #005582; /* Darker LinkedIn color for hover */
        }

footer {
  text-align: center;
  padding: 15px;
  background:black;
  color: white;
  width: 100%;
  margin-top: 150px;
}

#resume1{
    text-align: center;

}