* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --secondary: #1a1a1a;
    --text-dark: #333;
    --text-light: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --gray: #666;
    --light-gray: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 30px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-description {
    text-align: center;
    color: var(--gray);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-primary:active,
.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 100%;
}

.btn-secondary:active,
.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: var(--primary);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="1200" height="600" fill="%231a1a1a"/><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: slideInUp 1s ease-out;
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .btn-primary {
    padding: 14px 40px;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 60px 0;
}

/* ==================== ROOMS SECTION ==================== */
.rooms {
    background-color: var(--light-bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge.premium {
    background-color: #ff6b6b;
    color: white;
}

.badge.royal {
    background-color: #4ecdc4;
    color: white;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-content p {
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.price {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.price span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

/* ==================== IMAGE GRID SECTIONS ==================== */
.bar, .pool, .party {
    padding: 60px 0;
}

.bar {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.bar .section-title,
.bar .section-subtitle,
.bar .section-description {
    color: var(--text-light);
}

.bar .section-title {
    color: var(--primary);
}

.party {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.party .section-title,
.party .section-subtitle,
.party .section-description {
    color: var(--text-light);
}

.party .section-title {
    color: var(--primary);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.image-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--primary);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: var(--transition);
}

.image-card:hover .overlay {
    opacity: 1;
}

.overlay small {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background-color: var(--light-bg);
}

.gallery-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

/* ==================== VIDEO GRID ==================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    display: block;
    border-radius: 8px;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.about .section-title {
    color: var(--primary);
}

.about .section-subtitle {
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(8px);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.info-card p,
.info-card a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
}

.info-card a {
    color: var(--primary);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background-color: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary);
    min-width: 25px;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 11px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
    padding: 25px 15px;
    border-top: 2px solid var(--primary);
}

.footer p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer span {
    color: var(--primary);
    font-weight: 600;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    text-decoration: underline;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.floating-btn.whatsapp:active,
.floating-btn.whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-btn.call {
    background-color: var(--primary);
    color: var(--secondary);
}

.floating-btn.call:active,
.floating-btn.call:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: 95%;
    max-width: 450px;
    animation: slideInUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:active {
    color: var(--primary);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    clear: both;
    font-size: 1.5rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content input,
.modal-content select {
    padding: 11px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background-color: white;
    color: var(--text-dark);
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.modal-content select {
    cursor: pointer;
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.99);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 15px 0;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .cards-grid,
    .image-grid,
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 40px 0;
    }

    .card-image {
        height: 180px;
    }

    .image-card {
        height: 200px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .modal-content {
        width: 90%;
        margin: 20px;
        padding: 20px;
    }

    .video-card iframe {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .nav-menu {
        top: 45px;
    }

    .hero {
        margin-top: 45px;
        height: 80vh;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero .btn-primary {
        padding: 11px 25px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .cards-grid,
    .image-grid,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card-image,
    .image-card {
        height: 200px;
    }

    .card-content {
        padding: 15px;
    }

    .card-content h3 {
        font-size: 1.15rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .contact-form,
    .modal-content form {
        gap: 10px;
    }

    .modal-content input,
    .modal-content select,
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 16px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .about-text h3,
    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        gap: 12px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .video-card iframe {
        height: 150px;
    }

    .gallery-subtitle {
        font-size: 1.3rem;
    }

    section {
        padding: 30px 0;
    }

    .info-card {
        padding: 15px;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .cards-grid,
    .image-grid,
    .video-grid {
        gap: 10px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite;
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(212, 175, 55, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: slideInUp 1s ease-out;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero .btn-primary {
    padding: 15px 50px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8);
    }
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero .btn-primary {
        padding: 12px 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero .btn-primary {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* ==================== LOGO STYLING ==================== */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.nav-brand h1 {
    color: var(--primary);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-brand:hover h1 {
    color: #e6c200;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ==================== RESPONSIVE LOGO ==================== */
@media (max-width: 768px) {
    .nav-brand {
        gap: 8px;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .nav-brand h1 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 6px;
    }

    .logo-img {
        height: 35px;
        width: 35px;
    }

    .nav-brand h1 {
        font-size: 1rem;
    }
}

.logo-img{
    width: 100px;      /* apne hisaab se size change kar sakte ho */
    height: 50px;
    object-fit: cover;
    border-radius: 0;   /* ye round hatake rectangle karega */
}