/* ===================================
   Global Styles
   =================================== */
:root {
    --primary-blue: #3862FF;
    --secondary-blue: #2A51E6;
    --dark-blue: #141B34;
    --light-blue: #3358E7;
    --highlight-blue: #3862FF;
    --text-white: #FFFFFF;
    --text-muted: #5663A8;
    --gradient-start: #141B34;
    --gradient-end: #3358E7;
    --border-white-20: rgba(255, 255, 255, 0.20);
    --border-white-39: rgba(255, 255, 255, 0.39);
    --glass-bg: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(44, 78, 206, 0.50) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #FFFFFF;
    margin: 0;
    padding-top: 0;
}
.breadcrumb{
  display: none !important;
}
.container-responsive{
    display: block;
    padding: 0 0px;
}
.main-container {
    padding-top: 0px !important;
}
body.navbar-is-fixed-top {
    padding-top: 0px;
}
a{
    text-decoration: none !important;
}
.navbar-fixed-top.sticky-header{

}
@media screen and (min-width: 960px) {
    header.navbar {
        margin-top: 0px !important;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background:url(../images/banner-bg.webp) top center no-repeat;    
    /*background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);*/
    min-height: 100vh;
    padding:60px 0 160px;
    position: relative;
    overflow: hidden;
}

.hero-section ul
{
    float: right;
    margin-top: 20px;
}

.hero-section ul li
{
    color:#fff;
    text-align: right;
    display: inline-block;
    margin-right: 20px;
}

.hero-section ul li a
{
   color:#fff; 
   text-decoration: none;
}

.hero-section ul li a:hover
{
   color:#375df1; 
}

/*.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 98, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(51, 88, 231, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}*/


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 78px;
    margin-bottom: 30px;
}

.hero-title .text-highlight {
    color: var(--highlight-blue);
    font-size: 40px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    line-height: 50px;
}

.hero-title .text-white {
    color: var(--text-white);
}

.hero-description {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 40px;
    max-width: 739px;
}


/* ===================================
   Form Container
   =================================== */
.form-container {
    /*background: var(--glass-bg);
    border: 1px solid var(--border-white-20);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(44, 78, 206, 0.50) 100%);
    */   
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(44, 78, 206, 0.50) 100%);     */
    border: 1px solid rgba(255, 255, 255, 0.20);    
    border-radius: 6px;
    padding: 20px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
    color: var(--text-white);
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 20px;
}

.form-title strong {
    font-size: 36px;
    font-weight: 700;
}
.audit-form label.error{
    display: none !important;
}
.audit-form .form-control {
    background: var(--text-white);
    border: none;
    border-radius: 6px;
    padding: 20px 22px;
    font-size: 14px;
    color: var(--text-muted);
    height: 50px;
    transition: all 0.3s ease;
}

.audit-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(56, 98, 255, 0.3);
    outline: none;
    transform: scale(1.02);
}

.audit-form .form-control::placeholder {
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    background: #2A51E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 98, 255, 0.4);
    color: var(--text-white);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    padding:100px 0 80px;
    position: relative;
}

.stat-circle {
    width: 249px;
    height: 249px;
    border: 2px solid var(--border-white-39);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 76px 30px 53px;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    cursor: auto;
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(56, 98, 255, 0.8), rgba(255, 255, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-circle:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(56, 98, 255, 0.4);
}

.stat-number {
    color: var(--text-white);
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
    font-size: 56px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
    animation: countUp 2s ease-out;
}

.stat-text {
    color: var(--text-white);
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

/* ===================================
    Warning Section
 =================================== */

.warning-section
{
    padding: 60px 0px 80px 0px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--secondary-blue);
    padding: 60px 0;
    color: #000000;
}
.section-title{
    font-size: 28px;
}
.section-title .text-primary {
    color: var(--secondary-blue);
    font-size: 54px;
    font-weight: 700;
}

.warning-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.warning-item:hover {
    transform: translateY(-10px);
}

.warning-icon {
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.warning-item:hover .warning-icon {
    transform: scale(1.1) rotate(5deg);
}

.warning-icon svg {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.warning-item:hover .warning-icon svg path {
    fill: var(--primary-blue);
}

.warning-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 500;
    line-height: 24px;
    color: #000000;
    margin-top: 15px;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 2px;
    background: #849EFF;
    margin: 20px auto 0;
    transition: all 0.3s ease;
}

.warning-item:hover .divider {
    width: 100px;
    background: var(--primary-blue);
}

/* ===================================
   Animations
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zoom-in {
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 0.6s ease-out forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   Modal Styles
   =================================== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
        line-height: 64px;
    }
    
    .hero-title .text-highlight {
        font-size: 30px;
    }
    
    .hero-description {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 20px 0 60px;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-info p {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 52px;
        text-align: center;
    }
    
    .hero-title .text-highlight {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .form-container {
        margin-top: 40px;
        padding: 30px 40px;
    }
    
    .stat-circle {
        width: 220px;
        height: 220px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-text {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 50px;
    }
    
    .section-title .text-primary {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .hero-title .text-highlight {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .form-container {
        padding: 25px 30px;
    }
    
    .form-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .form-title strong {
        font-size: 28px;
    }
    
    .stat-circle {
        width: 200px;
        height: 200px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 40px;
    }
    
    .section-title .text-primary {
        font-size: 32px;
    }
    
    .warning-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 10px 40px;
    }
    
    .contact-info p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-title .text-highlight {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .form-title strong {
        font-size: 24px;
    }
    
    .audit-form .form-control {
        padding: 15px 18px;
        height: 50px;
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 15px;
        height: 50px;
        font-size: 16px;
    }
    
    .stats-section {
        padding: 60px 0 80px;
    }
    
    .stat-circle {
        width: 180px;
        height: 180px;
        padding: 60px 20px 40px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .stat-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .warning-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 40px;
    }
    
    .section-title .text-primary {
        font-size: 26px;
    }
    
    .warning-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .warning-title {
        font-size: 16px;
        line-height: 22px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}


@media (min-width:991px) and (max-width: 1399px) {



    .stats-section .col-lg-2 {
        flex: 0 0 auto;
        width:33.33333333%;
    }

}

.navbar{
    display: flow-root;
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px;
    }
}

/* @media (min-width: 1366px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
    .stats-section .justify-content-center
    {
        justify-content: normal !important;
        display: flex;
        margin-right: -320px;
    }

}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}

@media (min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }
} */


@media (max-width:1365px) {

.hero-section {  
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    min-height: 100vh;
    padding:20px 10px 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

}

@media (max-width:991px) {

p.drupal-logo-2
{
    text-align: center;
}

.hero-section ul {
    float:none;
    text-align: center;
    margin-top: 20px;
}

.hero-title .text-highlight {
    color: var(--highlight-blue);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    line-height: 28px;
}

.section-title {
    font-family: 'Poppins', sans-serif !important;
    font-size:30px;
    font-weight: 400;
    line-height:54px;
    color: #000000;
    margin-bottom:0px;
}

.section-title .text-primary {
    color: var(--secondary-blue);
    font-size: 40px;
    font-weight: 700;
}

}