/*!
Theme Name: kjdcollege
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kjdcollege
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

kjdcollege is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background: #ffffff;
            color: #1a2c3e;
            line-height: 1.6;
            overflow-x: hidden;
        }

        :root {
            --orange: #f58220;
            --orange-dark: #e06e10;
            --orange-light: #ffb366;
            --navy: #002b45;
            --navy-light: #1a4b6e;
            --navy-dark: #001c2e;
            --gray-light: #f8f9fa;
            --gray-border: #e9ecef;
            --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
            --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 70px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            position: relative;
        }
		img.footerlogo {
    width: 150px;
    height: 100px;
}

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--orange);
            margin: 15px auto 0;
            border-radius: 4px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(245,130,32,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(245,130,32,0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--orange);
            color: var(--orange);
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            background: var(--orange);
            color: white;
            transform: translateY(-2px);
        }

        /* Header Navigation with Hamburger Menu */
        header {
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 24px;
            color: white;
            box-shadow: 0 5px 15px rgba(245,130,32,0.3);
        }

        .logo-text h1 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.65rem;
            letter-spacing: 1.5px;
            color: var(--orange);
            font-weight: 700;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--navy);
            margin: 5px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--orange);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: var(--orange);
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: var(--navy);
            transition: 0.3s;
            font-size: 0.9rem;
            position: relative;
        }

        .nav-links a:after {
            content: '';
           
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            /* background: var(--orange); */
            transition: 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .student-login-btn {
            background: var(--orange);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            transition: 0.3s;
        }

        .student-login-btn:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(245,130,32,0.1), transparent);
            transform: rotate(15deg);
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            flex: 1;
        }

        .motto-badge {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            display: inline-block;
            padding: 8px 22px;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(245,130,32,0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-content h2 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-content p {
            font-size: 1.05rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-group {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 25px;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s;
        }

        /* Rotating Slider Section - Below Hero */
        .rotating-slider-section {
            padding: 0;
            background: var(--gray-light);
        }

        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .rotating-slider {
            position: relative;
            width: 100%;
            height: 700px;
            overflow: hidden;
        }

        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .slider-slide.active {
            opacity: 1;
        }

        .slider-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 43, 69, 0.5);
        }

        .slider-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .slider-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .slider-content p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .slider-btn {
            background: var(--orange);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            display: inline-block;
        }

        .slider-btn:hover {
            background: var(--orange-dark);
            transform: translateY(-3px);
        }

        /* Slider Navigation Dots */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .slider-dot.active {
            background: var(--orange);
            width: 30px;
            border-radius: 10px;
        }

        /* Slider Navigation Arrows */
        .slider-prev, .slider-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: 0.3s;
            font-size: 1.2rem;
        }

        .slider-prev {
            left: 20px;
        }

        .slider-next {
            right: 20px;
        }

        .slider-prev:hover, .slider-next:hover {
            background: var(--orange);
        }

        /* Quick Info Cards */
        .quick-info {
            background: var(--gray-light);
        }

        .info-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            flex: 1;
            min-width: 240px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
            border-bottom: 4px solid var(--orange);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .card i {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 18px;
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--navy);
            font-weight: 700;
        }

        /* Notice Ticker */
        .notice-ticker {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            padding: 18px 0;
        }

        .ticker-container {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            background: rgba(255,255,255,0.08);
            padding: 10px 25px;
            border-radius: 60px;
        }

        .ticker-label {
            background: var(--orange);
            padding: 6px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
        }

        .ticker-marquee {
            flex: 1;
            overflow: hidden;
        }

        .ticker-marquee p {
            animation: marquee 22s linear infinite;
            white-space: nowrap;
            color: white;
            font-weight: 500;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* About Section */
        .about-section {
            background: white;
        }

        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            flex: 1.2;
        }

        .about-text h3 {
            color: var(--orange);
            font-size: 1rem;
            letter-spacing: 3px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .about-text h2 {
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .about-text p {
            margin-bottom: 18px;
            color: #4a5568;
        }

        .vision-mission {
            display: flex;
            gap: 25px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .vm-card {
            flex: 1;
            background: var(--gray-light);
            padding: 25px 20px;
            border-radius: 16px;
            text-align: center;
            transition: 0.3s;
        }

        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }

        .vm-card i {
            font-size: 2.2rem;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .vm-card h4 {
            color: var(--navy);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .about-image {
            flex: 0.8;
        }

        .about-image img {
            width: 100%;
            border-radius: 25px;
            box-shadow: var(--shadow-md);
        }

        /* Programs Slider Section */
        .programs-section {
            background: var(--gray-light);
            overflow: hidden;
        }

        .programs-slider-container {
            position: relative;
            padding: 0 40px;
        }

        .swiper-slide {
            height: auto;
        }

        .course-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
		.programs-slider-container a.btn-outline {
    width: 200px;
    margin: auto;
    display: block;
    text-align: center;
    margin-top: 68px;
}

        .course-image {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .course-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,43,69,0.7));
        }

        .course-icon {
            position: absolute;
            bottom: 15px;
            left: 20px;
            background: var(--orange);
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
        }

        .course-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .course-content h3 {
            color: var(--navy);
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .course-badge {
            display: inline-block;
            background: #fff3e8;
            color: var(--orange);
            padding: 4px 14px;
            border-radius: 25px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 15px;
            align-self: flex-start;
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--orange);
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            box-shadow: var(--shadow-sm);
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .swiper-pagination-bullet-active {
            background: var(--orange);
        }

        .view-all-btn {
            text-align: center;
            margin-top: 50px;
        }

        /* Admissions Process */
        .admissions-process {
            background: linear-gradient(135deg, #fff, var(--gray-light));
            position: relative;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 5px 15px rgba(245,130,32,0.3);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .testimonial-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--orange);
            opacity: 0.3;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: #4a5568;
            font-size: 1rem;
        }

        .testimonial-author {
            font-weight: 800;
            color: var(--navy);
            font-size: 1.1rem;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--orange);
            margin-top: 5px;
        }

        .rating {
            color: var(--orange);
            margin-bottom: 15px;
        }

        /* Blog Section */
        .blog-section {
            background: var(--gray-light);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: 0.3s;
            box-shadow: var(--shadow-sm);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .blog-image {
            height: 220px;
            background-size: cover;
            background-position: center;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            color: var(--orange);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blog-content h3 {
            color: var(--navy);
            margin-bottom: 12px;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .read-more {
            color: var(--orange);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .read-more:hover {
            gap: 12px;
        }

        /* Contact Section */
        .contact-section {
            background: white;
        }

        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: var(--gray-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange);
            font-size: 1.3rem;
            transition: 0.3s;
        }

        .contact-item:hover .contact-icon {
            background: var(--orange);
            color: white;
        }

        .contact-details strong {
            color: var(--navy);
            display: block;
            margin-bottom: 5px;
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--gray-border);
            border-radius: 12px;
            font-family: inherit;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(245,130,32,0.1);
        }

        .map-container {
            margin-top: 50px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        /* Footer */
        footer {
            background: var(--navy-dark);
            color: #b0c4de;
            padding: 60px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 45px;
            margin-bottom: 45px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 22px;
            font-size: 1.1rem;
            position: relative;
            display: inline-block;
        }

        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 2px;
            background: var(--orange);
        }

        .footer-col a {
            color: #b0c4de;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: 0.3s;
        }

        .footer-col a:hover {
            color: var(--orange);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--orange);
            transform: translateY(-3px);
        }

        .newsletter-input {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-input input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 10px 0 0 10px;
            font-family: inherit;
        }

        .newsletter-input button {
            background: var(--orange);
            border: none;
            padding: 0 18px;
            border-radius: 0 10px 10px 0;
            color: white;
            cursor: pointer;
            transition: 0.3s;
        }

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 0.85rem;
        }

        /* Login Modal */
        .login-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .login-modal.active {
            display: flex;
        }

        .login-container {
            background: white;
            border-radius: 28px;
            width: 90%;
            max-width: 450px;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .login-header {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            padding: 30px;
            text-align: center;
            color: white;
            position: relative;
        }

        .login-header .login-icon {
            width: 70px;
            height: 70px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2rem;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }

        .login-body {
            padding: 35px;
        }

        .login-input-group {
            margin-bottom: 25px;
            position: relative;
        }

        .login-input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--orange);
        }

        .login-input-group input {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 1px solid var(--gray-border);
            border-radius: 50px;
            font-family: inherit;
        }

        .login-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: white;
            padding: 14px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--orange);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
		
		.logo-text img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}
a#studentLoginBtn {
    color: white;
}

        /* Responsive Media Queries */
        @media (max-width: 992px) {
            .nav-container {
                padding: 15px 20px;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                gap: 25px;
                transition: 0.3s ease;
                box-shadow: var(--shadow-md);
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .about-grid {
                flex-direction: column;
            }
            
            .hero-grid {
                flex-direction: column;
                text-align: center;
            }
            
            .btn-group {
                justify-content: center;
            }
            
            .rotating-slider {
                height: 700px;
            }
            
            .slider-content h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-content h2 {
                font-size: 1.6rem;
            }
            
            .btn-primary, .btn-outline {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .rotating-slider {
                height: 350px;
            }
            
            .slider-content h2 {
                font-size: 1.4rem;
            }
            
            .slider-content p {
                font-size: 0.9rem;
            }
            
            .slider-prev, .slider-next {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .info-cards {
                flex-direction: column;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-step {
                width: 100%;
                max-width: 350px;
            }
            
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                flex-direction: column;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-col h4:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            .newsletter-input {
                max-width: 300px;
                margin: 0 auto;
            }
            
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-content h2 {
                font-size: 1.3rem;
            }
            
            .motto-badge {
                font-size: 0.7rem;
                padding: 5px 15px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .rotating-slider {
                height: 900px;
            }
            
            .slider-content h2 {
                font-size: 1.2rem;
            }
            
            .login-container {
                width: 95%;
            }
            
            .login-body {
                padding: 20px;
            }
        }


        /* ===== BREADCRUMB HERO - FULL WIDTH ===== */
.blog-breadcrumb-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('http://u6j.237.mytemp.website/kjdcarecollege/wp-content/uploads/2026/06/women-adults-looking-laptop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-bottom: 0;
}

.blog-breadcrumb-hero .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.92) 0%, rgba(26, 42, 58, 0.7) 100%);
    z-index: 1;
}

.blog-breadcrumb-hero .breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.blog-breadcrumb-hero .breadcrumb-inner {
    text-align: center;
}

.blog-breadcrumb-hero .breadcrumb-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.blog-breadcrumb-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.blog-breadcrumb-hero .breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.blog-breadcrumb-hero .breadcrumb li a {
    color: #ff6b00;
    text-decoration: none;
    transition: 0.3s;
}

.blog-breadcrumb-hero .breadcrumb li a:hover {
    color: #ff8c00;
}

.blog-breadcrumb-hero .breadcrumb li .separator {
    color: rgba(255,255,255,0.3);
}

.blog-breadcrumb-hero .breadcrumb li.current {
    color: #ffffff;
    font-weight: 600;
}

.blog-breadcrumb-hero .breadcrumb-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 80px;
}

.blog-breadcrumb-hero .breadcrumb-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== BLOG PAGE WRAPPER ===== */
.blog-page-wrapper {
    padding: 60px 0 80px;
    background: #ffffff;
}

.blog-page-wrapper .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== MAIN GRID ===== */
.blog-main-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* ===== LEFT COLUMN ===== */
.blog-posts-col {
    flex: 1;
}

.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* ===== BLOG POST CARD ===== */
.blog-post-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail .post-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image {
    transform: scale(1.03);
}

.post-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.post-category-badge a {
    background: #ff6b00;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.post-category-badge a:hover {
    background: #e85d00;
}

.post-content {
    padding: 25px 30px 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.post-meta span {
    color: #6c757d;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta span i {
    color: #ff6b00;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.post-title a {
    color: #1a2a3a;
    text-decoration: none;
    transition: 0.3s;
}

.post-title a:hover {
    color: #ff6b00;
}

.post-excerpt {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b00;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-btn:hover {
    gap: 12px;
    color: #e85d00;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.post-tags .tag-label {
    color: #6c757d;
    font-size: 0.85rem;
}

.post-tags a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 3px 10px;
    background: #f8f9fa;
    border-radius: 50px;
    transition: 0.3s;
}

.post-tags a:hover {
    background: #ff6b00;
    color: #fff;
}

/* ===== PAGINATION ===== */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #f8f9fa;
    color: #1a2a3a;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
    margin: 0 3px;
}

.blog-pagination .page-numbers.current {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.blog-pagination .page-numbers:hover:not(.current) {
    background: #e9ecef;
    border-color: #ff6b00;
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    border: none;
}

/* ===== NO POSTS ===== */
.no-posts-found {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
}

.no-posts-found i {
    color: #ff6b00;
    margin-bottom: 20px;
    display: block;
}

.no-posts-found h3 {
    color: #1a2a3a;
    margin: 0 0 10px;
}

.no-posts-found p {
    color: #6c757d;
    margin: 0;
}

/* ===== RIGHT COLUMN - SIDEBAR ===== */
.blog-sidebar-col {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.sidebar-widget:hover {
    border-color: #ff6b00;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #ff6b00;
}

/* ===== SEARCH WIDGET ===== */
.search-input-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.search-input-group:focus-within {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.search-input-group .search-field {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1a2a3a;
}

.search-input-group .search-field::placeholder {
    color: #adb5bd;
}

.search-input-group .search-submit {
    padding: 12px 20px;
    background: #ff6b00;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-group .search-submit:hover {
    background: #e85d00;
}

/* ===== CATEGORIES WIDGET ===== */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 8px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 8px;
    color: #1a2a3a;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.categories-list li a:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.categories-list li a .cat-name {
    font-weight: 500;
}

.categories-list li a .cat-count {
    background: #f8f9fa;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #6c757d;
    transition: 0.3s;
}

.categories-list li a:hover .cat-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ===== TAGS WIDGET ===== */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-cloud .tag-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #ffffff;
    border-radius: 50px;
    color: #1a2a3a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
}

.tags-cloud .tag-item:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
    transform: translateY(-2px);
}

.tags-cloud .tag-item .tag-count {
    background: #f8f9fa;
    padding: 1px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #6c757d;
    transition: 0.3s;
}

.tags-cloud .tag-item:hover .tag-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.tags-cloud .no-tags {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== RECENT POSTS WIDGET ===== */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 12px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-posts-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.recent-posts-list li a:hover {
    border-color: #ff6b00;
    transform: translateX(5px);
}

.recent-posts-list li a .recent-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-posts-list li a .recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-posts-list li a .recent-title {
    flex: 1;
    color: #1a2a3a;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.recent-posts-list li a .recent-date {
    display: block;
    color: #6c757d;
    font-size: 0.75rem;
    margin-top: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .blog-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-sidebar-col {
        width: 100%;
    }
    
    .post-thumbnail .post-image {
        height: 280px;
    }

    .blog-breadcrumb-hero .breadcrumb-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-breadcrumb-hero {
        min-height: 220px;
    }

    .blog-breadcrumb-hero .breadcrumb-content {
        padding: 40px 0;
    }

    .blog-breadcrumb-hero .breadcrumb-title {
        font-size: 2rem;
    }

    .blog-breadcrumb-hero .breadcrumb li {
        font-size: 0.9rem;
    }

    .blog-breadcrumb-hero .breadcrumb-shape {
        height: 50px;
    }

    .blog-page-wrapper {
        padding: 40px 0 60px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.3rem;
    }
    
    .post-meta {
        gap: 12px;
    }
    
    .post-thumbnail .post-image {
        height: 220px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 0.9rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blog-breadcrumb-hero {
        min-height: 180px;
    }

    .blog-breadcrumb-hero .breadcrumb-title {
        font-size: 1.6rem;
    }

    .blog-breadcrumb-hero .breadcrumb li {
        font-size: 0.8rem;
    }

    .blog-breadcrumb-hero .breadcrumb-shape {
        height: 35px;
    }

    .post-thumbnail .post-image {
        height: 180px;
    }
    
    .post-title {
        font-size: 1.1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .blog-pagination .page-numbers {
        min-width: 35px;
        height: 35px;
        padding: 0 10px;
        font-size: 0.8rem;
        margin: 0 2px;
    }
    
    .recent-posts-list li a {
        padding: 10px;
    }
    
    .recent-posts-list li a .recent-thumb {
        width: 50px;
        height: 50px;
    }
}

.contact-details a {
    color: #5a5855;
}

.mission-vision-wrap i.fas.fa-bullseye {
    color: #ff6000;
}

.mission-vision-wrap i.fas.fa-eye {
  color: #ff6000;
}

.course-section .course-description {
    text-align: center;
}

@media (max-width: 768px) {
    .site-footer .footer-logo {
        margin: 0 auto 10px;
        width: 150px;
    }
}

@media (max-width: 992px) {
    .page-id-117 .blog-sidebar-col {
        width: 100%;
        margin-right: -20px;
    }
}


.site-footer .footer-links a {
    color: #2b4956 !important;
    
}
.site-footer h4 {
    color: #132a3a !important;
   
}

.site-footer {
    background: transparent !important;
    color: #1a2a3a !important;
    padding: 60px 0 30px;
    font-family: inherit;
}
.site-footer .footer-links a {
    color: #052b40 !important;
    font-weight: 500;
    font-size: 16px !important;
}

.newsletter-input input[type="email"] {
    border: 1px solid #052b3a;
}

.site-footer .footer-badge {
    margin: 5px 0 0 0;
    color: #052b3a !important;
   
}
p.copyright-subtext {
    display: none;
}
.site-footer .footer-address {
    color: #052b40 !important;
    
}

.site-footer .newsletter-input input {
   
    border: 1px solid #ff6000 !important;
}
.footer-col a {
    color: #ff6000 !important;
    text-decoration: none;
   
    font-weight: 800;
    margin-top: 6px;
}

.site-footer .social-links a {
  
    width: 40px;
    height: 40px;
    background: rgb(255 96 0) !important;
   color: white !important
}

.site-footer .copyright p {
    margin: 0;
    color: #2e4c58 !important;
    /* opacity: 0.7; */
    font-size: 0.9rem;
    font-weight: 700 !important;
    opacity:0.9 !important;
} 


a.btn-outline {
    DISPLAY: NONE;
}

.view-all-btn {
    display: none;
}
#admissions a.btn-primary {
    display: none;
}

.hero-cta-group {
    display: none !important;
}

.hero-cta-group-v3 {
    display: none !important;
}

.learn-content-v3 p {
    display: none;
}
.cta-content-v3 p {
    color: white !important;
    margin-bottom: 10px;
}

.cta-content-v3 h3 {
    color: white;
}

.hero-cta-group-v4 {
    display: none !important;
}

.cta-content-v4 p {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    color: white !important;
}
.cta-content-v4 h3 {
    color: white;
}


/*   New cssss */







.about-image{
    position:relative;
    display:inline-block;
    padding:14px;
    border-radius:35px;
}

.about-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:#002d57;
    border-radius:35px;
    filter:blur(22px);
    z-index:0;
    animation:blueGlow 5s infinite alternate ease-in-out;
}

.about-image img{
    position:relative;
    display:block;
    border-radius:28px;
    border:6px solid #ff6000;
    z-index:2;
    width:100%;
}

@keyframes blueGlow{

0%{
    transform:scale(1);
    opacity:.8;
}

100%{
    transform:scale(1.04);
    opacity:1;
}

}

.course-image{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:26px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transition:all .6s ease;
    isolation:isolate;
    cursor:pointer;

    border:2px solid rgba(255,96,0,.15);

    box-shadow:
    0 20px 60px rgba(0,45,87,.18);
}


/* ===========================
   Blue Ambient Glow
=========================== */

.course-image::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:32px;

    background:
    radial-gradient(circle at top left,
    rgba(0,45,87,.45),
    transparent 45%),

    radial-gradient(circle at bottom right,
    rgba(255,96,0,.25),
    transparent 45%);

    z-index:-1;

    transition:.6s;

}


/* ===========================
   Premium Border
=========================== */

.course-image::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:26px;

    padding:2px;

    background:linear-gradient(
    135deg,
    #ff6000,
    #ffd0a8,
    #002d57,
    #ff6000
    );

    background-size:300% 300%;

    animation:borderAnimation 8s linear infinite;

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

}


/* ===========================
   Overlay
=========================== */

.course-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,45,87,.55),
    rgba(0,45,87,.18),
    transparent
    );

    transition:.5s;

}


/* ===========================
   Shine
=========================== */

.course-overlay::before{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:45%;

    height:100%;

    background:linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.45),

    transparent

    );

    transform:skewX(-25deg);

    transition:1.2s;

}


/* ===========================
   Icon
=========================== */

.course-icon{

    position:absolute;

    right:22px;

    bottom:22px;

    width:74px;

    height:74px;

    border-radius:50%;

    background:#ff6000;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    z-index:5;

    border:4px solid rgba(255,255,255,.95);

    box-shadow:

    0 12px 30px rgba(255,96,0,.45);

    transition:.6s;

}


/* ===========================
   Corner Accent
=========================== */

.course-image span{

    position:absolute;

    width:45px;

    height:45px;

    border-top:3px solid #ff6000;

    border-left:3px solid #ff6000;

    top:18px;

    left:18px;

}


/* ===========================
   Hover
=========================== */

.course-image:hover{

    background-size:112%;

    box-shadow:

    0 30px 70px rgba(0,45,87,.30);

}


/* Glow */

.course-image:hover::before{

    transform:scale(1.04);

    opacity:1;

}


/* Shine */

.course-image:hover .course-overlay::before{

    left:180%;

}


/* Overlay */

.course-image:hover .course-overlay{

    background:

    linear-gradient(

    to top,

    rgba(0,45,87,.35),

    rgba(0,45,87,.05),

    transparent

    );

}


/* Icon */

.course-image:hover .course-icon{

    transform:

    rotate(360deg)

    scale(1.08);

}


/* ===========================
   Border Animation
=========================== */

@keyframes borderAnimation{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}


.card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:45px 35px;

    overflow:hidden;

    transition:.45s ease;

    border:1px solid rgba(0,45,87,.08);

    box-shadow:
    0 15px 40px rgba(0,45,87,.08);

    z-index:1;

}


/* Top Orange Line */

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
    90deg,
    #ff6000,
    #ff9b42,
    #ff6000
    );

}


/* Blue Background Shape */

.card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(0,45,87,.05);

    border-radius:50%;

    top:-90px;

    right:-90px;

    transition:.5s;

}


/* ICON */

.card-icon{

    width:78px;

    height:78px;

    background:#002d57;

    color:#fff;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:28px;

    transition:.45s;

    box-shadow:
    0 15px 30px rgba(0,45,87,.20);

}


/* Title */

.card h3{

    font-size:28px;

    color:#002d57;

    margin-bottom:18px;

    font-weight:700;

}


/* Text */

.card p{

    color:#666;

    line-height:1.9;

    font-size:16px;

    margin-bottom:28px;

}


/* Button */

.card-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#002d57;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}

.card-btn i{

    transition:.4s;

}


/* Hover */

.card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 35px 70px rgba(0,45,87,.15);

}


/* Blue Shape */

.card:hover::after{

    transform:scale(1.35);

}


/* Icon */

.card:hover .card-icon{

    background:#ff6000;

    transform:rotate(-8deg) scale(1.08);

}


/* Heading */

.card:hover h3{

    color:#ff6000;

}


/* Button */

.card:hover .card-btn{

    color:#ff6000;

}

.card:hover .card-btn i{

    transform:translateX(8px);

}




.process-step{
    position: relative;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    overflow: hidden;
    transition: all .45s ease;
    border: 1px solid rgba(0,45,87,.08);
    box-shadow: 0 15px 40px rgba(0,45,87,.08);
    z-index: 1;
}

/* Animated Top Border */

.process-step::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff6000,#002d57,#ff6000);
    transition:.6s;
}

/* Decorative Circle */

.process-step::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(0,45,87,.05);
    right:-100px;
    top:-100px;
    transition:.5s;
}

/* ICON */

.process-step i {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#002d57,#00457f);
    color: #fff !important;
    font-size: 32px !important;
    border-radius: 22px;
    margin-bottom: 25px !important;
    box-shadow: 0 15px 30px rgba(0,45,87,.22);
    transition: .5s;
    padding-top: 13px;
    text-align: center;
    margin: auto;
}

/* Heading */

.process-step h3{

    color:#002d57;

    font-size:28px;

    margin-bottom:18px;

    font-weight:700;

    transition:.4s;

}

/* Text */

.process-step p{

    color:#666;

    line-height:1.9;

    font-size:15px;

    transition:.4s;

}

/* Hover */

.process-step:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,45,87,.18);

}

/* Top Line Animation */

.process-step:hover::before{

    left:0;

}

/* Circle */

.process-step:hover::after{

    transform:scale(1.3);

}

/* Icon */

.process-step:hover i{

    background:linear-gradient(135deg,#ff6000,#ff9448);

    transform:rotate(12deg) scale(1.1);

    box-shadow:
    0 18px 40px rgba(255,96,0,.35);

}

/* Heading */

.process-step:hover h3{

    color:#ff6000;

}

/* Text */

.process-step:hover p{

    color:#444;

}


.testimonial-card{
    position:relative;
    background:#ffffff;
    padding:40px 35px;
    border-radius:24px;
    overflow:hidden;
    transition:all .45s ease;
    border:1px solid rgba(0,45,87,.08);
    box-shadow:0 18px 45px rgba(0,45,87,.08);
    z-index:1;
}

/* Top Accent Line */

.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff6000,#ff9b52,#002d57);
}

/* Decorative Background */

.testimonial-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:radial-gradient(circle,
        rgba(0,45,87,.07),
        transparent 70%);
    right:-110px;
    top:-110px;
    transition:.5s;
    border-radius:50%;
}

/* Quote Icon */

.testimonial-card .quote-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#002d57,#004f8f);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    color:#fff !important;

    font-size:28px;

    transition:.5s;

    box-shadow:0 15px 30px rgba(0,45,87,.18);

}

.testimonial-card .quote-icon i{
    color:#fff !important;
}

/* Rating */

.testimonial-card .rating{

    color:#ffb400;

    font-size:22px;

    letter-spacing:3px;

    margin-bottom:18px;

}

/* Text */

.testimonial-text{

    color:#555;

    line-height:1.9;

    font-size:16px;

    font-style:italic;

    margin-bottom:25px;

}

/* Author */

.testimonial-author{

    font-size:20px;

    color:#002d57;

    font-weight:700;

    margin-bottom:6px;

}

/* Role */

.testimonial-role{

    color:#ff6000;

    font-size:15px;

    font-weight:600;

    letter-spacing:.5px;

}

/* Hover */

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,45,87,.18);

}

/* Background Shape */

.testimonial-card:hover::after{

    transform:scale(1.4);

}

/* Quote */

.testimonial-card:hover .quote-icon{

    background:linear-gradient(135deg,#ff6000,#ff9348);

    transform:rotate(-10deg) scale(1.08);

    box-shadow:
    0 18px 40px rgba(255,96,0,.35);

}

/* Rating */

.testimonial-card:hover .rating{

    transform:scale(1.05);

    transition:.4s;

}

/* Text */

.testimonial-card:hover .testimonial-text{

    color:#333;

}

/* Author */

.testimonial-card:hover .testimonial-author{

    color:#ff6000;

}


.blog-content{
    position:relative;
    background:#ffffff;
    padding:35px;
    border-radius:22px;
    overflow:hidden;
    transition:.45s ease;
    border:1px solid rgba(0,45,87,.08);
    box-shadow:0 18px 45px rgba(0,45,87,.08);
    z-index:1;
}

/* Animated Top Border */

.blog-content::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #ff6000,
        #002d57,
        #ff6000
    );

    transition:.6s;

}

/* Decorative Circle */

.blog-content::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    right:-90px;

    top:-90px;

    background:rgba(0,45,87,.05);

    transition:.5s;

}

/* Date */

.blog-date{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#eef6ff;

    color:#002d57;

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

    transition:.4s;

}

.blog-date i{

    color:#ff6000;

}

/* Heading */

.blog-content h3{

    font-size:28px;

    color:#002d57;

    line-height:1.4;

    margin-bottom:18px;

    transition:.4s;

}

/* Description */

.blog-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:28px;

    transition:.4s;

}

/* Read More */

.read-more{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#002d57;

    font-weight:700;

    position:relative;

    transition:.4s;

}

.read-more::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#ff6000;

    transition:.4s;

}

/* Hover */

.blog-content:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,45,87,.18);

}

.blog-content:hover::before{

    left:0;

}

.blog-content:hover::after{

    transform:scale(1.4);

}

.blog-content:hover .blog-date{

    background:#002d57;

    color:#fff;

}

.blog-content:hover .blog-date i{

    color:#ff6000;

}

.blog-content:hover h3{

    color:#ff6000;

}

.blog-content:hover p{

    color:#444;

}

.blog-content:hover .read-more{

    color:#ff6000;

}

.blog-content:hover .read-more::after{

    width:100%;

}

.about-image img {
    border: 10px solid #ff6000;
}