﻿:root {
    --primary-color: #ff8d3b; /* #f47c23 #f48a3c  */
    --secondary-color: #1f1f1f; /* #2c3c5c #303c4c  */
    --white-color: #ffffff;
    --primary-font-size: 1rem;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: var(--primary-font-size);
}

.Socheader-h1 {
    font-weight: bolder !important;
    font-size: 34px !important;
}



.Socheader-h2 {
    font-weight: bolder !important;
    font-size: 30px !important;
}


section {
    margin: 95px 0px;
}

hr {
    border-top: 5px solid black;
    border-radius:10px;
}
/*      ************************************* NavBar Design  *********************************   */

.navbar {
    border: 10px double #f7f7f7;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}

.navbar .nav-item {
    padding:0px 1rem;
}

    .navbar .nav-item a {
        color: var(--secondary-color) !important;
        font-weight: 600;
        transition: 0.1s ease-in;
    }

.navbar .nav-item a:hover {
        color: var(--primary-color) !important;
        border-bottom: 4px solid var(--primary-color);
        font-weight:bold;
}


/*      ************************************* Button Design  *********************************   */


.btnSoc {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 11rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

    .btnSoc:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        border: 0.1px solid var(--secondary-color);
        letter-spacing: 0.15rem;
        border-radius: 10rem;
        z-index: -2;
    }

    .btnSoc:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: var(--secondary-color);
       /* border: 1px solid var(--white-color);*/
        transition: all 0.5s ease-in;
        border-radius: 10rem;
        z-index: -1;
    }

    .btnSoc:hover {
        color: var(--white-color);
        font-weight: 700;
        text-decoration: none;
    }


        .btnSoc:hover:before {
            width: 100%;
        }
/*      ************************************* btnSocPrimary Design  *********************************   */

.btnSocPrimary {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btnSocPrimary:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border: 0.1px solid var(--secondary-color);
    letter-spacing: 0.15rem;
    z-index: -2;
}

.btnSocPrimary:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--secondary-color);
    /* border: 1px solid var(--white-color);*/
    transition: all 0.5s ease-in;
    z-index: -1;
}

.btnSocPrimary:hover {
    color: var(--white-color);
    font-weight: 700;
    text-decoration: none;
}

    .btnSocPrimary:hover:before {
        width: 100%;
    }

/*      ************************************* btnSocSecondary Design  *********************************   */

.btnSocSecondary {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    text-align: center;
    border: 0.1px solid var(--white-color);
    text-decoration: none;
}

    .btnSocSecondary:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--secondary-color);
        letter-spacing: 0.15rem;
        z-index: -2;
    }

    .btnSocSecondary:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: var(--primary-color);
        /* border: 1px solid var(--white-color);*/
        transition: all 0.5s ease-in;
        z-index: -1;
    }

    .btnSocSecondary:hover {
        color: var(--secondary-color);
        font-weight: 700;
        text-decoration: none;
    }

        .btnSocSecondary:hover:before {
            width: 100%;
        }
/*      ************************************* Footer Design  *********************************   */

footer {
    position: relative;
    width: 100%;
    min-height: 100px;
    background: var(--secondary-color);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    flex-direction: column;
    text-decoration: none;
}

footer .social_icon, footer .menu {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            color: var(--white-color);
            font-size: var(--primary-font-size);
}


footer .social_icon li, footer .menu li {
    list-style-type: none;
    margin: 0.5rem;
}

    footer .social_icon li a ion-icon {
        font-size: 1.5rem;
        display: inline-block;
        color: var(--white-color);
        margin: 0 10px;
        transition: 0.5s;
    }

footer .social_icon li a ion-icon:hover {
    transform:translateY(-8px);
}

    footer .menu li a {
        display: inline-block;
        color: var(--white-color);
        padding-right: 0.8rem;
        border-right: 2px solid var(--white-color);
        margin-right: 0.5rem;
        opacity: 1;
    }

  footer .menu li a:hover {
        opacity: 0.75;
    }

 footer p {
      color: var(--white-color);
      text-align:center;
      margin-top:15px;
      margin-bottom: 10px;
      font-size: var(--primary-font-size);
  }


.footer_col h4{
    text-transform:uppercase;
    font-weight:500;
    position:relative;
    color: var(--primary-color);

}


.footer_col h4::before{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    background-color: var(--white-color);
   height:2px;
   box-sizing:border-box;
   width:60px;
}


.footer_col ul{
    list-style-type:none;
}

    .footer_col ul li:not(:last-child) {
       margin-bottom: 8px;
    }


    .footer_col ul li a {
        font-size: 14px;
        color: var(--white-color);
        font-weight: 300;
        display: block;
        transition: 0.5s;
    }


    .footer_col ul li a:hover {
        color: #808080;
        padding-left: 5px;
    }

/*      ************************************* Footer Design  *********************************   */

.floating-btn {
    display: flex;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 80px;
    text-decoration: none;
    background-color: #00ff21;
    color: #fff;
    border-top-left-radius: 10000px;
    border-top-right-radius: 10000px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 10000px;
    text-align: center;
    box-shadow: 1px 1px 5px rgb(255 255 255);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
    animation: floatAnimation 1s infinite ease-in-out;
}

    .floating-btn:hover {
        cursor: pointer;
        text-decoration: none;
        animation: none;
        box-shadow: 0px -8px 6px rgba(0, 0, 0, 0.1), 0px 8px 6px rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }


@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px); /* Adjust floating distance as needed */
    }

    100% {
        transform: translateY(0);
    }
}