body {
    background-color: #f8f9fa;
}
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.navbar.scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-brand img{height: 70px;}
.navbar.scrolled .navbar-brand img{height: 40px;}
.hero {
    background: url(../images/hero.jpg) no-repeat center center/cover;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    animation: fadeIn 1.5s ease-in-out;
}
.hero:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: .7;
    z-index: 0;
}
.hero_text {
    position: relative;
    z-index: 1;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#features {
    margin-top: -120px !important;
    z-index: 1;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 50px;
    box-shadow: 0 -110px 35px rgba(0,0,0,.1);
}
#features .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#features .feature-icon {
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease;
}
#features .card:hover .feature-icon {
    color: #fff;
}
.btn-custom {
    background-color: #007bff;
    color: white;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
/*====================================================================================================*/
.why-choose {
    background: linear-gradient(to right, #0d6efd, #6610f2);
    color: white;
}
.highlight {
    color: #000;
}
.why-choose .info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.why-choose .info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}
.why-choose .icon-circle {
    width: 70px;
    height: 70px;
    background: white;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}
.why-choose h4 {
    font-size: 1.2rem;
    font-weight: 600;
}
.why-choose p {
    font-size: 0.95rem;
    opacity: 0.9;
    height: 70px;
}
/*======================================================================================================================*/
.key-features {
    background: #f8f9fa;
    padding: 50px 20px;
}
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #0d6efd, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.key-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}
.key-features p {
    font-size: 0.95rem;
    color: #555;
}
/*======================================================================================================*/
/* Business Gains Section */
.business-gains {
    background: #ededed;
}
.gain-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-left: 5px solid #0d6efd;
    
}
.gain-card:hover {
    transform: scale(1.05);
    border-left-color: #6610f2;
}
.gain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #0d6efd, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.threat-response {
    background: linear-gradient(to right, #000428, #004e92);
    color: white;
    padding: 80px 20px;
}
.response-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}
.response-card:hover {
    transform: translateY(-5px);
    border-left-color: #ff8800;
}
.response-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #ffcc00, #ff8800);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.threat-response h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.threat-response p {
    font-size: 1rem;
    margin-bottom: 0;
}

/*==========================================================================================================================*/

.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.accordion-button:hover {
    background: #e9ecef;
}
.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}
.accordion-body {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
}
.form-control {
    border-radius: 8px;
    padding: 10px;
}
.btn-custom {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
}
.form-group {
    margin-bottom: 20px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .2);
    background: transparent;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    outline: none;
}
.form-group textarea {
    height: 120px;
    resize: none;
}
.btn-submit {
    padding: 12px 30px;
    background: linear-gradient(to right, #0d6efd, #6610f2);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}
/*==================================================================================================*/
/* Footer Styling */
.footer {
    background: #111;
    color: #ccc;
    padding: 50px 0 0;
    font-size: 14px;
}
.footer h5 {
    color: #fff;
    margin-bottom: 15px;
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #007bff;
}
.social-icons a {
    display: inline-block;
    color: #ccc;
    font-size: 20px;
    margin-right: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    color: #007bff;
    transform: translateY(-3px);
}
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}
.footer p.text-center {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    margin-bottom: 0;
    padding-bottom: 10px;
}
