@font-face {
    font-family: 'montextralight_demo';
    src: url('../fonts/mont-extralightdemo-webfont.woff2') format('woff2'),
         url('../fonts/mont-extralightdemo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}



body {
  font-family: 'montextralight_demo';
}


.navbar-brand img {
    height: 45px;
}

.navbar{
    padding: 22px 0px !important;
}

.nav-link {
    color: black;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.active{
    font-weight: 700;
}

.nav-link:hover {
    color: black !important;
    font-weight: 600;
    
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: black;
}
.ContactUs{
    background: linear-gradient(45deg, #000000, #797777);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    padding: 13px 27px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ContactUs::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.ContactUs:hover::before {
    left: 100%;
}

.ContactUs:hover {
    
    background: linear-gradient(45deg, #1a1a1a, #444444);
}

.ContactUs:active {
    transform: translateY(-1px) scale(1.02);
}

@media(max-width:992px){

    .nav-link{
        text-align: center;
    }
    .custom-nav-section-styles{
        justify-content: center;
    }
}

 /* Footer */
     .footer {
            background-color: #17171A;
            color: #ffffff;
            padding: 60px 40px 40px;
        }

        .footer-logo img{
            width: 120px;
            height: 150px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
        }

        .logo-section {
            margin-bottom: 20px;
        }
 .company-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .company-tagline {
            font-size: 12px;
            color: #888;
            letter-spacing: 0.5px;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ccc;
            font-size: 14px;
            line-height: 1.4;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            color: #1EE0E1;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #1EE0E1;
            flex-shrink: 0;
            transition: all 0.3s ease;
            
        }

        .contact-item:hover .contact-icon {
            
            color: #1a1a1a;
            transform: scale(1.1);
        }
.contact-icon svg{
    width: 15px;
}
        .contact-text {
            flex: 1;
        }

    
        .footer-center {
            text-align: center;
        }

        .newsletter-section h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .newsletter-description {
            font-size: 14px;
            color: #FFFFFF6E;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .email-input-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
           
        }

        .email-input {
            width: 100%;
             background-color: #FFFFFF0A;
            border: none;
            border-radius:16px ;
            border: 1px solid #444;
            padding: 15px ;
            font-size: 16px;
            color: #ffffff;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .email-input::placeholder {
            color: #666;
            font-size: 16px;
        }

        .email-input:focus {
            border-color: #1EE0E1;
        }

        .email-submit {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            padding: 10px;
            transition: color 0.3s ease;
        }

        .email-submit:hover {
            color: #ffffff;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .nav-menu {
            list-style: none;
            
        }

        .nav-menu li {
            margin-bottom: 20px;
        }

        .nav-menu a {
            color: #FFFFFF6E;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background-color: #989898;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
           
            transition: left 0.6s;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon img {
            width: 20px;
            height: 20px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .social-icon:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 25px rgba(0, 212, 255, 0.4);
            background: linear-gradient(135deg, #00d4ff, #0099cc);
        }

        .social-icon:hover img {
            transform: rotate(360deg) scale(1.1);
            filter: brightness(1.2);
        }

     
        .social-icon:nth-child(2):hover {
            background: linear-gradient(135deg, #E4405F, #C13584);
            box-shadow: 0 15px 25px rgba(228, 64, 95, 0.4);
        }

        .social-icon:nth-child(1):hover {
            background: linear-gradient(135deg, #0077B5, #005885);
            box-shadow: 0 15px 25px rgba(0, 119, 181, 0.4);
        }

        .social-icon:nth-child(3):hover {
            background: linear-gradient(135deg, #1877F2, #166FE5);
            box-shadow: 0 15px 25px rgba(24, 119, 242, 0.4);
        }

        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
        }

        .social-icon:hover {
            animation: pulse 1.5s infinite;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #333;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            
        }

        .copyright {
            color: white;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-right {
                align-items: center;
            }

            .nav-menu {
                display: flex;
                gap: 30px;
                justify-content: center;
                margin-bottom: 30px;
            }

            .nav-menu li {
                margin-bottom: 0;
            }

            .newsletter-section h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 640px) {
            .footer {
                padding: 40px 20px 30px;
            }

            .nav-menu {
                flex-direction: column;
                gap: 20px;
            }

            .newsletter-section h2 {
                font-size: 28px;
            }

            .social-icons {
                justify-content: center;
            }
        }