@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@font-face {
    font-family: 'CustomFont';
    src: url('fonts/CustomFont-Regular.woff2') format('woff2'),
        url('fonts/CustomFont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Poppins', sans-serif;
}


:root {
    --dark-color: #222;
    --highlight: #e61d2b;
}


/* Navbar Link Hover Effect */
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--highlight);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}


/* Top Navigation Styles */
.top-nav {
    background-color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease-in-out;
}

.top-nav a:hover {
    color: var(--highlight);
    text-shadow: 1px 1px 3px rgba(230, 29, 43, 0.3);
}

.top-nav .navbar-toggler {
    color: white;
    border-color: white;
}

/* Search Bar Styles */
.nav-search {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
}

.nav-search input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
    width: 150px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.nav-search input::placeholder {
    color: #999;
    font-style: italic;
    transition: all 0.3s ease-in-out;
}

.nav-search input:focus::placeholder {
    opacity: 0;
    transform: translateY(-5px);
}

.nav-search i {
    color: #666;
    margin-left: 10px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.nav-search:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: #bbb;
}

/* Desktop Navigation Underline Effect */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        align-items: center;
    }

    .nav-link {
        display: inline-block;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: var(--coca-cola-red);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 100%;
    }

}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
    .navbar>.container {
        justify-content: end;
    }

    .top-nav .navbar-collapse {
        background-color: white;
        padding: 15px;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 10px 15px;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: var(--coca-cola-red);
        background-color: rgba(227, 24, 55, 0.1);
        padding-left: 20px;
    }

    .nav-link.active {
        color: var(--coca-cola-red);
        background-color: rgba(227, 24, 55, 0.1);
        padding-left: 20px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-search i {
        color: #666;
        margin-left: 110px;
        font-size: 18px;
        transition: all 0.3s ease-in-out;
    }
}

/* Animated Logo */
.logo {
    width: 300px;
    height: 240px;
    position: absolute;
    top: -90px;
    left: -0px;
    z-index: 100;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2c3e50;
    transition: all 0.3s ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


@keyframes logoFade {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo {
        width: 100px;
        height: 100px;
        position: absolute;
        top: -10px;
        left: 20px;
        z-index: 1080;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: var(--dark-color);
        animation: logoFade 3s infinite alternate;
    }

    .hero-section {
        background: url('');
        background-size: cover;
        background-position: center;
        height: 80vh;
        min-height: 400px;
        position: relative;
        margin-top: -12px;
    }
}


/* Hero Section Styles */
.hero-section {
    background: url('');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 400px;
    position: relative;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire section */
    z-index: -1;
    /* Places the video behind the content */
}



.hero-section .content {
    z-index: 1;
    /* Ensures the content is above the video */
    position: relative;
    padding: 20px;
}


.hero-text {
    position: absolute;
    left: 0;
    bottom: 20%;
    width: 100%;
    color: white;
    font-size: clamp(40px, 5vw, 120px);
    /* font-weight: bold; */
    letter-spacing: 2px;
    padding: 0 20px;
}

/* Welcome Section Styles */
.welcome-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-section h1 {
    color: var(--coca-cola-red);
    font-size: clamp(18px, 4vw, 24px);
    margin-bottom: 20px;
}

.circular-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 30px);
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.circular-nav-item {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.circular-nav-item h1 {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.circular-nav-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
}

.circular-nav-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.circular-nav-item:hover h1 {
    transform: scale(1.1);
    opacity: 0.9;
}

.circular-nav-item:hover::after {
    opacity: 0.7;
}


@media (max-width: 768px) {
    .circular-nav {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .circular-nav-item {
        width: 200px;
        height: 200px;
    }

    .circular-nav-item h1 {
        font-size: 18px;
        /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .circular-nav-item {
        width: 250px;
        height: 250px;
    }

    .circular-nav-item h1 {
        font-size: 16px;
        /* Smaller font size for extra small screens */
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .circular-nav {
        flex-direction: column;
        gap: 15px;
    }

    .circular-nav-item img {
        width: 100%;
        /* Mobile स्क्रीनसाठी योग्य साइज */
        max-width: 200px;
        height: auto;
        padding: 15px;
    }
}


/* General Styles */
.stories-section {
    background: whitesmoke;
    padding: 60px 0;
}

.section-title {
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* Story Cards */
.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Card Image */
.story-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover img {
    transform: scale(1.1);
}

/* Card Body */
.story-card .card-body {
    text-align: center;
    background: white;
    padding-top: 26px;
}

.story-card .card-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}


/* General Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.connect-section {
    background-color: rgb(226, 27, 41);
    text-align: center;
    padding: 40px 0;
    color: white;
}

.connect-section h2 span {
    color: #ffe600;
}

.social-icons {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #ff758c;
    border-radius: 50%;
    font-size: 24px;
    transition: transform 0.3s ease, background 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: darkblue;
    color: white;
    transform: translateY(-5px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-nav a:hover {
    color: #ffe600;
    opacity: 0.8;
}

.footer-bottom {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ff758c;
}

.footer-bottom .separator {
    margin: 0 10px;
    color: #666;
}

@media (max-width: 1024px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-bottom {
        padding: 10px 0;
        font-size: 12px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

}


.contact-section {
    padding: 120px 0 80px 0;
    background-color: #f8f9fa;
}

.contact-heading {
    color: var(--coca-cola-red);
    margin-bottom: 40px;
    text-align: center;
    font-size: 36px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 501px;
}

/* New input field styles */
.contact-form .form-control {
    margin-bottom: 30px;
    padding: 12px 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 2px solid var(--coca-cola-red);
}

/* Remove default textarea resize */
.contact-form textarea.form-control {
    resize: none;
}

/* Style placeholders */
.contact-form .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.contact-form .btn-submit {
    background-color: var(--coca-cola-red);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    transition: opacity 0.3s;
}

.contact-form .btn-submit:hover {
    opacity: 0.9;
}

.contact-info {
    background: white;
    padding: 46px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--coca-cola-red);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #666;
}

.contact-info .social-icons {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #004B93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px 40px;
    }

    .contact-info {
        margin-top: 30px;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Background Blur Effect */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

/* Popup Box */
.popup-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 12px;
    width: 800px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

/* Show animation */
.popup.show {
    opacity: 1;
}

.popup-content.show {
    transform: translateY(0);
    opacity: 1;
}

/* Popup Layout */
.popup-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

/* Image Section */
.popup-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.popup-image img:hover {
    transform: scale(1.05);
}

/* Details Section */
.popup-details {
    flex: 1;
    color: white;
    text-align: left;
}

.popup-details h3 {
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-details ul {
    padding: 0;
    list-style-type: none;
}

.popup-details ul li {
    font-size: 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.2);
}

/* Gradient Button */
.btn-gradient {
    display: inline-block;
    padding: 10px 40px;
    font-size: 16px;
    color: white;
    border-radius: 8px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #ff4b2b, #ff416c);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-body {
        flex-direction: column;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body,
p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    /* Regular */
}

hr {
    border: 1px solid #e0e0e0;
    margin: 2rem 0;
}

ul {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.5rem;
}

.follow-section {
    background: linear-gradient(135deg, #222, #444);
    color: white;
    padding: 50px 0;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.facebook {
    background: #3b5998;
}

.whatsapp {
    background: #25D366;
}

.youtube {
    background: #FF0000;
}

.instagram {
    background: #401f25;
}

.social-btn:hover {
    transform: scale(1.2);
    opacity: 0.8;
}