/* assets/css/style.css - Professional Minimalist Design */
:root {
    --navy: #1a2c3e;
    --charcoal: #2c3e3f;
    --gold: #c9a03d;
    --gold-light: #e6c77a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #4a4a4a;
    --text-dark: #2c2c2c;
    --text-light: #6c6c6c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 40px;
    height: 40px;
    border: 2px solid var(--medium-gray);
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-swift {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-institute {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 4px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link.active {
    color: var(--gold) !important;
}

/* Buttons */
.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    border: none;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 12px 32px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-section .lead {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Recognition Section */
.recognition-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.recognition-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.recognition-section .message {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Formation Model Section */
.formation-model {
    padding: 100px 0;
    background: var(--white);
}

.model-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.model-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-icon i {
    font-size: 28px;
    color: var(--gold);
}

.model-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.model-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards for Faculties & Programs */
.faculty-card, .program-card {
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.faculty-card:hover, .program-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.faculty-card h3, .program-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.faculty-card p, .program-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.faculty-icon, .program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-icon i, .program-icon i {
    font-size: 32px;
    color: var(--gold);
}

/* Insights/Blog Cards */
.insight-card {
    padding: 0;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.insight-content {
    padding: 30px;
}

.insight-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.insight-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.read-more:hover {
    color: var(--gold-light);
}

/* Leadership Cards */
.leadership-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s;
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.leadership-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.leadership-card .title {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.leadership-card .bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--medium-gray);
}

.form-control {
    border: 1px solid var(--medium-gray);
    border-radius: 0;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.form-label {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

/* Map Container */
.map-container {
    border: 1px solid var(--medium-gray);
    overflow: hidden;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand .brand-swift {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand .brand-institute {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 500;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 20px 0;
}

.footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 0;
    margin-right: 8px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer hr {
    background: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 0;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .recognition-section h2 {
        font-size: 1.8rem;
    }
    
    .model-card {
        padding: 30px 20px;
    }
    
    .faculty-card, .program-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
/* Leadership Team Images */
.leadership-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s;
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Leadership Photo Styling */
.leadership-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.leadership-card:hover .leadership-photo {
    transform: scale(1.02);
    border-color: var(--gold-light);
    box-shadow: 0 8px 25px rgba(201, 160, 61, 0.2);
}

.leadership-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.leadership-card .title {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.leadership-card .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .leadership-photo {
        width: 140px;
        height: 140px;
    }
}
/* ============================================
   HEADER LOGO STYLING - Extreme Right Position
   ============================================ */

/* Logo Image Styling - Placed at the end of navbar */
.header-logo {
    height: 45px;
    width: auto;
    margin-left: 20px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* For mobile devices - adjust logo size and spacing */
@media (max-width: 991px) {
    .header-logo {
        height: 35px;
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    /* Reorder items on mobile */
    .navbar-collapse {
        text-align: center;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
    
    .btn-outline-gold {
        display: inline-block;
        margin-bottom: 15px;
    }
}
/* ============================================
   HEADER LOGO STYLING - Extreme Right Position
   ============================================ */

/* Logo Image Styling - Placed at the end of navbar */
.header-logo {
    height: 45px;
    width: auto;
    margin-left: 30px;  /* INCREASE THIS VALUE - was 20px, now 30px */
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* For mobile devices */
@media (max-width: 991px) {
    .header-logo {
        height: 35px;
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
}
    }
}
<a href="https://www.facebook.com/share/1Byzyr7hNa/?mibextid=wwXIfr" target="_blank" rel="noopener noreferrer">
        <i class="fab fa-facebook-f"></i>
    </a>
    <a href="https://www.linkedin.com/in/theswift-institue-762159400/" target="_blank" rel="noopener noreferrer">
        <i class="fab fa-linkedin-in"></i>
    </a>
    <a href="https://youtube.com/@theswifthq?si=VxV2j-xBd3aO3yV9" target="_blank" rel="noopener noreferrer">
        <i class="fab fa-youtube"></i>
    </a>
</div>
/* Contact Page Social Links */
.contact-info .social-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.contact-info .social-section h5 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--navy);
}

.contact-info .social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info .social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info .social-icon i {
    font-size: 1.2rem;
}

.contact-info .social-icon span {
    font-size: 0.9rem;
}

.contact-info .social-icon.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    transform: translateY(-3px);
}

.contact-info .social-icon.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
    transform: translateY(-3px);
}

.contact-info .social-icon.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info .social-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-info .social-icon {
        justify-content: center;
    }
}