
:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --accent: #dc3545;
            --light: #f8f9fa;
            --dark: #212529;
            --ieee-blue: #00629b;
            --ieee-yellow: #f2a900;
            --skn-blue: #1a3a6c;
            --skn-red: #c41230;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body
         {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Important Links Dropdown */
        .dropdown-menu {
            max-height: 80vh;
            overflow-y: auto;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border: none;
            border-radius: 10px;
            padding: 10px 0;
        }
        
        .dropdown-header {
            font-size: 11px;
            font-weight: 700;
            color: var(--skn-blue);
            letter-spacing: 1px;
            padding: 10px 20px 5px;
            margin-top: 5px;
        }
        
        .dropdown-item {
            padding: 10px 20px;
            font-size: 14px;
            color: #333;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background: rgba(26, 58, 108, 0.1);
            color: var(--skn-blue);
            padding-left: 25px;
        }
        
        .dropdown-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--skn-blue);
        }
        
        .dropdown-item-social {
            display: flex;
            gap: 15px;
            padding: 10px 20px;
            justify-content: center;
        }
        
        .dropdown-item-social a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--skn-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .dropdown-item-social a:hover {
            background: var(--skn-red);
            transform: translateY(-3px);
        }
        
        .dropdown-divider {
            margin: 10px 0;
            border-color: rgba(26, 58, 108, 0.1);
        }
        
        @media (max-width: 768px) {
            .dropdown-menu {
                min-width: 250px;
                max-height: 70vh;
            }
            
            .dropdown-item {
                font-size: 13px;
                padding: 8px 15px;
            }
            
            .dropdown-item:hover {
                padding-left: 20px;
            }
        }
        
        /* Header Styles */
        .top-header {
            background-color: var(--skn-blue);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .top-header {
                font-size: 11px;
                padding: 6px 0;
            }
            
            .top-header .container > div {
                flex-direction: column;
                align-items: center !important;
                gap: 8px;
                text-align: center;
            }
            
            .top-header i {
                font-size: 10px;
            }
        }
        
        /* News Ticker */
        .news-ticker {
            background: linear-gradient(90deg, var(--skn-red), #a00f28);
            color: white;
            padding: 10px 0;
            overflow: hidden;
            position: relative;
        }
        
        .ticker-wrapper {
            display: flex;
            align-items: center;
        }
        
        .ticker-label {
            background: rgba(0,0,0,0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            white-space: nowrap;
            margin-right: 15px;
        }
        
        .ticker-content {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        
        .ticker-content span {
            display: inline-block;
            padding-right: 150px;
            animation: ticker 20s linear infinite;
            white-space: nowrap;
        }
        
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        .ticker-content:hover span {
            animation-play-state: paused;
        }
        
        .main-header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        
        @media (max-width: 768px) {
            .main-header {
                padding: 8px 0;
            }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .college-logo {
            height: 60px;
        }
        
        .ieee-logo {
            height: 50px;
        }
        
        .naac-logo {
            height: 80px;
        }
        
        @media (max-width: 768px) {
            .logo-container {
                gap: 8px;
            }
            
            .college-logo {
                height: 40px;
            }
            
            .ieee-logo {
                height: 35px;
            }
            
            .naac-logo {
                height: 50px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-container {
                gap: 5px;
            }
            
            .college-logo {
                height: 30px;
            }
            
            .ieee-logo {
                height: 28px;
            }
            
            .naac-logo {
                height: 38px;
            }
        }
        
        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--skn-blue);
        }
        
        .logo-text span {
            color: var(--skn-red);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            margin: 0 15px;
            transition: all 0.3s;
            position: relative;
        }
        
        @media (min-width: 992px) {
            .navbar-collapse {
                justify-content: flex-end;
            }
            
            .navbar-nav {
                padding-left: 150px;
            }
            
            .navbar-brand {
                margin-right: auto;
                padding-right: 50px;
            }
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--skn-blue) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--skn-blue);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .nav-link.dropdown-toggle::after {
            content: none;
        }
        
        .nav-link.dropdown-toggle:before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--skn-blue);
            transition: width 0.3s;
        }
        
        .nav-link.dropdown-toggle:hover:before {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 58, 108, 0.85), rgba(10, 39, 89, 0.85)), url('../assets/SKNSCOEimg1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        @media (max-width: 768px) {
            .hero p {
                font-size: 1rem;
                margin-bottom: 20px;
                padding: 0 15px;
            }
        }
        
        @media (max-width: 480px) {
            .hero p {
                font-size: 0.9rem;
            }
        }
        
        .btn-ieee {
            background-color: var(--ieee-yellow);
            color: var(--skn-blue);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
            animation: fadeIn 1s ease 0.6s both;
        }
        
        .btn-ieee:hover {
            background-color: #e09900;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Section Styling */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: var(--skn-blue);
            position: relative;
            padding-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 35px;
                padding-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--skn-red);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
        }
        
        @media (max-width: 480px) {
            .section-padding {
                padding: 40px 0;
            }
        }
        
        /* About Section */
        .about-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .about-content:hover {
            transform: translateY(-10px);
        }
        
        .about-content h3 {
            color: var(--skn-blue);
            margin-bottom: 20px;
        }
        
        .mission-card {
            background-color: var(--skn-blue);
            color: white;
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
        }
        
        .mission-list {
            list-style: none;
            padding-left: 0;
            margin: 15px 0 0 0;
        }
        
        .mission-list li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            line-height: 1.8;
        }
        
        .mission-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--ieee-yellow);
            font-weight: bold;
            font-size: 18px;
        }
        
        /* Why Join IEEE Section */
        .benefit-category {
            margin-bottom: 40px;
        }
        
        .category-title {
            color: var(--skn-blue);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--skn-red);
        }
        
        .category-title i {
            margin-right: 10px;
            color: var(--skn-red);
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            text-align: center;
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--skn-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }
        
        /* Events Section */
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .event-img {
            height: 200px;
            overflow: hidden;
        }
        
        .event-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .event-card:hover .event-img img {
            transform: scale(1.1);
        }
        
        .event-date {
            background-color: var(--skn-red);
            color: white;
            padding: 8px 15px;
            font-weight: 600;
            display: inline-block;
            border-radius: 0 0 5px 5px;
            position: absolute;
            top: 0;
            left: 20px;
        }
        
        .event-content {
            padding: 20px;
        }
        
        /* Events Section - Carousel */
        #eventsCarousel {
            padding: 20px 0;
        }
        
        .navbar-nav {
            padding: 10px 0;
            margin-left: 0 !important;
        }
        
        .event-card-carousel {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s ease;
        }
        
        .event-card-carousel:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .event-carousel-img {
            height: 400px;
            overflow: hidden;
            position: relative;
        }
        
        .event-carousel-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .event-card-carousel:hover .event-carousel-img img {
            transform: scale(1.08);
        }
        
        .event-date-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--skn-red), #a00f28);
            color: white;
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(196, 18, 48, 0.4);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .event-carousel-content {
            padding: 30px;
        }
        
        .event-carousel-content h3 {
            color: var(--skn-blue);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .event-carousel-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 0;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--skn-blue);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: var(--skn-red);
        }
        
        .carousel-control-prev {
            left: -25px;
        }
        
        .carousel-control-next {
            right: -25px;
        }
        
        .carousel-indicators {
            margin-bottom: -30px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--skn-blue);
            opacity: 0.5;
            transition: all 0.3s;
        }
        
        .carousel-indicators button.active {
            opacity: 1;
            background-color: var(--skn-red);
            transform: scale(1.2);
        }
        
        .no-events-message {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .no-events-message i {
            font-size: 4rem;
            color: var(--skn-blue);
            margin-bottom: 20px;
        }
        
        .no-events-message h4 {
            color: var(--skn-blue);
            margin-bottom: 10px;
        }
        
        /* Past Events Cards */
        .past-event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .past-event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .past-event-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .past-event-content {
            padding: 20px;
        }
        
        .past-event-content h5 {
            color: var(--skn-blue);
            margin-bottom: 10px;
        }
        
        .past-event-content p {
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        /* Registration Modal */
        .contact-details {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            padding: 10px;
            background: white;
            border-radius: 5px;
        }
        
        .contact-item a {
            color: var(--skn-blue);
            text-decoration: none;
        }
        
        .contact-item a:hover {
            text-decoration: underline;
        }
        
        /* Initiatives Section */
        .initiatives {
            background: linear-gradient(to right, var(--skn-blue), #0a2759);
            color: white;
        }
        
        .initiative-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .initiative-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .initiative-icon {
            width: 70px;
            height: 70px;
            background: var(--skn-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }
        
        /* Team Section */
        .team-member {
            text-align: center;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        @media (max-width: 768px) {
            .team-member {
                margin-bottom: 25px;
            }
        }
        
        .team-member h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--skn-blue);
            margin-bottom: 5px;
        }
        
        @media (max-width: 768px) {
            .team-member h4 {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .team-member h4 {
                font-size: 0.9rem;
            }
        }
        
        .member-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid var(--skn-blue);
            position: relative;
        }
        
        @media (max-width: 768px) {
            .member-img {
                width: 150px;
                height: 150px;
                margin-bottom: 15px;
                border: 3px solid var(--skn-blue);
            }
        }
        
        @media (max-width: 480px) {
            .member-img {
                width: 120px;
                height: 120px;
            }
        }
        
        .member-img {
            transition: all 0.3s;
        }
        
        .team-member:hover .member-img {
            border-color: var(--skn-red);
            transform: scale(1.05);
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .social-links {
            position: absolute;
            bottom: -20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .team-member:hover .social-links {
            opacity: 1;
            bottom: 10px;
        }
        
        .social-links a {
            width: 35px;
            height: 35px;
            background: var(--skn-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--skn-red);
            transform: translateY(-5px);
        }
        
        /* Gallery - Event Cards */
        .gallery-events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            animation: fadeIn 0.5s ease;
        }
        
        @media (max-width: 768px) {
            .gallery-events-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-events-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
        
        .gallery-event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .gallery-event-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .gallery-event-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .gallery-event-card:hover .gallery-event-image img {
            transform: scale(1.15);
        }
        
        .gallery-event-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        
        .gallery-event-title {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .gallery-photo-count {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--skn-red);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
        }
        
        /* Gallery - Photos Grid */
        .gallery-photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            animation: fadeIn 0.5s ease;
        }
        
        @media (max-width: 768px) {
            .gallery-photos-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-photos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        
        .gallery-photo-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .gallery-photo-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            z-index: 10;
        }
        
        .gallery-photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-photo-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 58, 108, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-photo-item:hover .gallery-photo-overlay {
            opacity: 1;
        }
        
        /* News Section */
        .news-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
            height: 100%;
            border-left: 4px solid var(--skn-blue);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-left-color: var(--skn-red);
        }
        
        .news-card h5 {
            color: var(--skn-blue);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .news-card .news-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .news-card .news-excerpt {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-card .read-more {
            color: var(--skn-blue);
            font-weight: 600;
            font-size: 14px;
            margin-top: 10px;
            display: inline-block;
        }
        
        .news-card:hover .read-more {
            color: var(--skn-red);
        }
        
        /* Contact Section */
        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        @media (max-width: 768px) {
            .contact-card {
                padding: 20px;
            }
        }
        
        .contact-info li {
            margin-bottom: 15px;
            list-style: none;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--skn-red);
            margin-right: 10px;
            margin-top: 5px;
            font-size: 20px;
        }
        
        .contact-form .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--skn-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 58, 108, 0.25);
        }
        
        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #888;
            padding: 30px 0;
        }
        
        .copyright {
            text-align: center;
            font-size: 14px;
            margin: 0;
        }
        
        .copyright p {
            margin: 0;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 767px) {
            .hero {
                padding: 120px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 40px 0;
            }
            
            .logo-text {
                font-size: 18px;
            }
        }