/* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; color: #212529; line-height: 1.6; } /* Header */ .page-header { background: linear-gradient(to right, #1c1c46, #4a89dc); padding: 100px 0; text-align: center; color: #fff; } .page-header h1 { font-size: 3rem; font-weight: bold; } /* Navbar */ .navbar { background-color: #fff; padding: 10px 0; border-bottom: 1px solid #ddd; } .navbar .nav-item .nav-link { color: #44425A; font-weight: 500; margin-right: 15px; } .navbar .nav-item .nav-link:hover { color: #FF6600; } .btn-primary { background-color: #FF6600; border-color: #FF6600; } .btn-primary:hover { background-color: #cc5200; border-color: #cc5200; } /* Hero Section */ .container-fluid.bg-primary { background: linear-gradient(135deg, #4a89dc, #1c1c46); color: white; text-align: center; padding: 50px 20px; } .container-fluid.bg-primary h1 { font-size: 2.5rem; margin-bottom: 10px; } .container-fluid.bg-primary .btn-secondary { background-color: #FF6600; color: white; } /* Footer */ .bg-dark { background-color: #343a40 !important; color: white; } .bg-dark p { margin: 0; font-size: 0.9rem; } /* Forms */ .form-group label { font-weight: 600; } .form-control { border-radius: 5px; border: 1px solid #ddd; padding: 10px; } .form-control:focus { border-color: #FF6600; box-shadow: none; } /* Images */ .img-fluid { max-width: 100%; height: auto; border-radius: 8px; } /* Banner Images */ .banner-img { width: 100%; height: auto; max-height: 400px; object-fit: cover; } /* Section Images (e.g., Faculty or Blog) */ .section-img { max-width: 100%; height: auto; margin-bottom: 15px; border-radius: 5px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } /* Profile Images */ .profile-img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin: 0 auto; display: block; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } /* Blog Post Image */ .blog-post-img { width: 100%; max-height: 300px; object-fit: cover; border-radius: 10px; } /* Section Headings */ h2, h3, h5 { color: #44425A; margin-bottom: 15px; } /* Links */ a { color: #FF6600; text-decoration: none; } a:hover { text-decoration: underline; color: #b34700; } /* Logo Styling */ .logo-img { width: 150px; /* Adjust size as needed */ height: auto; display: inline-block; margin-right: 10px; } /* Additions for Custom Logo and Layout Adjustments */ .logo-img { width: 150px; height: auto; } #chat-window { height: 300px; overflow-y: scroll; border-bottom: 1px solid #ddd; margin-bottom: 10px; } #chat-output { padding: 5px; } #user-input { width: calc(100% - 80px); padding: 10px; } button { padding: 10px; background-color: #007BFF; color: white; border: none; cursor: pointer; } button:hover { background-color: #0056b3; } /* Chat Icon Button */ .chat-icon-container { position: fixed; bottom: 20px; /* Adjust for distance from the bottom */ right: 20px; /* Adjust for distance from the right */ z-index: 1000; } .chat-icon { background-color: #007BFF; /* Blue background */ color: white; border: none; border-radius: 50px; padding: 10px 15px; font-size: 1rem; cursor: pointer; display: flex; align-items: center; gap: 5px; } .chat-icon i { font-size: 1.2rem; } .chat-icon:hover { background-color: #0056b3; } /* Chatbot Interface */ .chatbot-container { position: fixed; right: 20px; bottom: 85px; width: 1280px; height: 720px; display: none; } .chatbot-iframe { width: 1280px; /* Full width of the container */ height: 720px; border: none; /* Remove the iframe border */ border-radius: 12px; } .hidden { display: none; /* Initially hidden */ }