@font-face {
    font-family: poppins;
    src: url('../fonts/Poppins-Regular.ttf');
}

    @font-face {
        font-family: PantonDemoBlack;
        /*src: url('./assets/fonts/Poppins-ExtraBold.ttf');*/
        src: url('../fonts/PantonDemo-Black.otf');

    }

    @font-face {
        font-family: PantonDemoLight;
        /*src: url('./assets/fonts/Poppins-ExtraBold.ttf');*/
        src: url('../fonts/PantonNarrowDemo-Light.otf');

    }



:root {
    --navy: #2b3391;
    /* Dark Navy Blue */
    --accent: #ffcc00;
    /* Vibrant Yellow */
    --dark: #2b3391;
    /* Deeper Navy for backgrounds 2b3391*/

}

h1,h2,h3,h4,h5,h6{
    font-family: PantonDemoBlack;
}
.nav-item{
    font-family: PantonDemoBlack;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.full-w {
    width: 100%;
}

/* Navigation */
.navbar {
    background: #2b4391;
    padding: 1.5rem 0;
    transition: 0.3s;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 20px;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.logo {
    width: 130px;
    margin: -20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    /*background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../../assets/images/back2.jpeg?auto=format&fit=crop&w=1920&q=80');*/
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: #000;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 0;
}

.btn-primary:hover {
    background: #d4aa00;
    color: #000;
}

/* Services Section */
.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;

}

.cfont {
    font-family: 'PantonDemoBlack';
    letter-spacing: 0.1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.service-item {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: 0.4s;
    margin-bottom: 30px;
    height: 100%;
}

.service-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 25px;
}

/* Stats Section */
.stats-bg {
    background: var(--dark);
    color: white;
    padding: 80px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}










.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    transition: 0.3s;
}

.why-card:hover .icon-circle {
    background: var(--primary) !important;
    color: white !important;
    transform: scale(1.1);
}

.why-card:hover .icon-circle i {
    color: white !important;
}

/* Center Image Pulse Effect */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale
    }
}







.partner-box {
    background: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.partner-box:hover {
    border-color: var(--accent) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.partner-box:hover i {
    color: var(--navy) !important;
}

.testimonial-card {
    transition: 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}


.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    transition: 0.3s;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--accent);
}

.btn-accent {
    background: var(--accent);
    color: var(--navy);
    border: none;
    transition: 0.3s;
}

.btn-accent:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

.pricing-card.transition {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.transition:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.featured-badge {
    font-size: 0.7rem;
    letter-spacing: 1px;
}



.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--navy);
    transform: translateY(-3px);
}