/* Menu Button */
.menu-btn {
	font-family: 'Open Sans', sans-serif;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn i {
    font-size: 24px;
    color: #fc846f; /* Adjust as needed */
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.open {
    display: block;
}

/* Menu */
.menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px; /* Adjust width as needed */
    height: 100%;
    background-color: #fff; /* Adjust background color */
    z-index: 1000;
    transition: right 0.3s ease;
    }

.menu.open {
    right: 0;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 290px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    font-family: 'Open Sans', sans-serif;
}

.close-btn i {
    font-size: 24px;
    color: #fc846f; /* Adjust as needed */
}



/* Menu Links */
.menu-link {
    display: block;
    padding: 20px;
    font-size: 19px;
    font-weight: 500;
    color: #fc846f; /* Adjust link color */
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
}

.menu-link:hover {
	color:#fff;
    background-color: #fc846f; /* Adjust hover background color */
}

/* Social Buttons */
.social-buttons {
    margin-top: 20px;
    margin-left: 18px;
    
}



.social-btn {
    display: inline-block;
    width: 40px; /* Adjust width as needed */
    height: 40px; /* Adjust height as needed */
    background-color: #fc846f; /* Adjust background color */
    margin-right: 5px; /* Adjust spacing between buttons */
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff; /* Adjust icon color */
	border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
   background-color: #c57c6f;
}




/* Social Buttons */
.social-buttons-small {
    margin-top: 10px;
    margin-left: 0px;
    
}



.social-btn-small  {
    display: inline-block;
    width: 30px; /* Adjust width as needed */
    height: 30px; /* Adjust height as needed */
    background-color: #fc846f; /* Adjust background color */
    margin-right: 5px; /* Adjust spacing between buttons */
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    color: #fff; /* Adjust icon color */
	border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-buttons-small .social-btn-small:hover {
   background-color: #c57c6f;
}



/* Submenu */
.submenu {
    display: none;
    background: #f1f1f1;
    margin-top: 0px;
}

.submenu a {
    display: block;
    padding: 10px;
    color: #fc846f;
    padding-left: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.submenu a:hover {
    background-color: #fc846f;
    color:#fff;
}

/* Rotate arrow */
.rotate {
    transform: rotate(180deg);
}

 /* Hide close button by default */
        .close-btn {
            display: none;
        }
        
  .portfolio{
	  cursor: pointer;
  }    
  
  
  
    /* Style for active state of Portfolio link */
        .portfolio-link.active {
            color: #fff; /* Change color as needed */
            background-color: #fda494;
        }

        /* Style for active state of Services link */
        .services-link.active {
            color: #fff; /* Change color as needed */
            background-color: #fda494;
        }

        /* Rotate arrow icon */
        .arrow.rotate {
            transform: rotate(180deg);
        }
  
  
