@charset "UTF-8";
/* CSS Document */

       :root {
            --cospar-navy: #1a1d3a;
            --cospar-gold: #d8770e;
            --cospar-teal: #008b8b;
        }


        body {
          font-family: "Barlow", sans-serif;
          font-weight: 400;
          font-style: normal;
        }

html, body{
    height: 100%;
}

h1,h2,h3,h4,h5 {
          font-family: "Barlow Condensed", sans-serif;
          font-weight: 500;
          font-style: normal;
        }

        /* Header */
        .top-header {
            background-color: #bf8001;
            padding: 10px 0;
            height: 98px;
            background-image:url("../images/headertop.svg");
            background-repeat: no-repeat;
            background-size: auto 98px;
        }

        .top-header .social-links a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
        }
.navy-text{
    color: var(--cospar-navy);
}
        /* Navigation */
        .main-nav {
            background-color: var(--cospar-navy);
            padding: 0;
            box-shadow: inset 0 -5px 0 0 #b03de7;
            
        }

        .main-nav .nav-link {
            color: white !important;
            padding: 15px 20px;
            text-transform: uppercase;
            font-size: 1.2rem;
            font-weight: 500;
            border-bottom: 5px solid transparent;
            transition: all 0.3s;
        }

        .main-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-bottom-color: var(--cospar-gold);
        }

        .main-nav .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
            padding: 8px 12px;
        }

        .main-nav .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }

        .main-nav .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section */
        .hero-section {
            max-height: 450px;

            color: white;
            
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            /*font-size: 3rem;
            font-weight: 300;
            letter-spacing: 2px;*/
        }

        .hero-section .date {
            /*font-size: 2.5rem;
            font-weight: 600;
            margin-top: 10px;*/
        }

        .hero-location {
            background-color: rgba(138, 43, 226, 0.8);
            color: white;
            padding: 8px 20px 10px 20px;
            border-radius: 13px;
            display: inline-block;
            margin-top: 20px;
        }

        .explore-badge {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            font-size: 4rem;
            font-weight: bold;
            letter-spacing: 3px;
        }

        .explore-badge .o-planet {
            color: #4a90e2;
            position: relative;
        }

        /* Quick Links Section */
        .quick-links {
            padding: 60px 0;
            
        }

        .quick-links h2 {
            color: var(--cospar-navy);
            font-weight: 600;
            margin-bottom: 40px;
            padding-left: 15px;
            border-left: 10px solid var(--cospar-gold);
        }

        .card-link {
            background-color: white;
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .card-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
 
        .card-icon {
            background: linear-gradient(135deg, #d3d3d3 0%, #a9a9a9 100%);
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.quick-links .card-icon{
           overflow: hidden;
            
        }
        .card-icon i {
            font-size: 4rem;
            color: rgba(255,255,255,0.8);
        }

        .card-body h5 {
            color: var(--cospar-navy);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .card-body p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .btn-cospar {
            background-color: var(--cospar-navy);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-cospar:hover {
            background-color: var(--cospar-gold);
            color: white;
        }

        /* Latest News Section */
        .latest-news {
            padding: 60px 0;
            background-color: white;
        }

        .latest-news h2 {
            color: var(--cospar-navy);
            font-weight: 600;
            margin-bottom: 40px;
            padding-left: 15px;
            border-left: 10px solid var(--cospar-teal);
        }

        .news-item {
            border-bottom: 1px solid var(--cospar-navy);
            padding: 25px 0;
            transition: background-color 0.3s;
            text-decoration: none;
            display: block;
        }

        .news-item:hover {
            background-color: #f8f9fa;
            text-decoration: none;
        }

        .news-item h3 {
            color: var(--cospar-navy);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .news-item p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Footer */
        .footer {
            background-color: #c48800;
            color: white;
            
            background-image: url("../images/footerbg.jpg");
            background-repeat:repeat-y;
            background-size: contain;
            
        }
.cosparwhitefootercircle{
    background-image: url("../images/footercircle.png");
    background-repeat:repeat-y;
    color: black!important;
    background-position: bottom center;
    min-height: 500px;
}
        .footer h5 {
            
            
        }

        .footer p {
            line-height: 1.8;
            
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cospar-gold);
        }

        .social-footer {
           
        }

        .social-footer a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .social-footer a:hover {
            color: var(--cospar-gold);
        }

        .industry-partners {
            background: linear-gradient(to right, var(--cospar-gold), #daa520);
            padding: 40px 0;
            text-align: center;
        }

        .industry-partners h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .btn-read-more {
            background-color: var(--cospar-navy);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 30px;
        }

        .btn-read-more:hover {
            background-color: var(--cospar-gold);
        }

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 3rem !important;
    }
    .main-nav {

        height: 65px;
    }    
}
@media (max-width: 767.98px) {
    .footer {
        background-image: none;
    }
}
