:root {
    --primary-color: #ff7e33;
    --secondary-color: #2c3e50;
    --accent-color: #ffb347;
    --light-bg: #f8f9fa;
    --dark-text: #2d3436;
    --light-text: #636e72;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color) !important;
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    position: relative;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover:before {
    visibility: visible;
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary {
     background-color: var(--primary-color);
    border-color: var(--primary-color);
  /*  padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s; */
    border-radius: 30px;
    padding: 12px 30px;
    box-shadow: 0 10px 25px rgba(255,140,0,.3);
}

.btn-primary:hover {
    background-color: #e66b29;
    border-color: #e66b29;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 126, 51, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
     border-radius: 30px;
    padding: 12px 30px;
    box-shadow: 0 10px 25px rgba(255,140,0,.3);
}.btn-outline-danger {

     border-radius: 30px;
    padding: 12px 30px;
    /* box-shadow: 0 10px 25px rgba(255,140,0,.3); */
}
.btn-outline-info {

     border-radius: 30px;
    padding: 12px 30px;
  /*   box-shadow: 0 10px 25px rgba(255,140,0,.3); */
}.btn-outline-secondary {

     border-radius: 30px;
    padding: 12px 30px;
  /*   box-shadow: 0 10px 25px rgba(255,140,0,.3); */
}
.btn-outline-success {

     border-radius: 30px;
    padding: 12px 30px;
  /*   box-shadow: 0 10px 25px rgba(255,140,0,.3); */
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%), url('https://source.unsplash.com/random/1600x900/?dog,pet');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0 100px;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

.ad-container {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px dashed #ddd;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.breed-card {
    transition: all 0.4s ease;
    margin-bottom: 25px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.breed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.breed-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breed-card:hover img {
    transform: scale(1.05);
}

.breed-card .card-body {
    position: relative;
    z-index: 1;
}

.breed-card .card-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.breed-card .card-text {
    color: var(--light-text);
    margin-bottom: 20px;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--light-text);
}

.article-image {
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.newsletter-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.newsletter-card h3 {
    position: relative;
}

.newsletter-card h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

/* .footer:before{content:'';position:absolute;top:0;left:0;width:100%;height:100px;background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white"></path></svg>');background-size:cover;background-position:center;transform:translateY(-99px);}
 */
.footer h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    position: relative;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.login-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-card .card-body {
    padding: 40px;
}

.login-card .form-control {
    height: 50px;
    border-radius: 8px;
    padding-left: 15px;
    border: 1px solid #eee;
}

.login-card .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.login-card .btn {
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
}

.login-card .divider {
    position: relative;
    margin: 30px 0;
    text-align: center;
}

.login-card .divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.login-card .divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    color: var(--light-text);
}

.login-card .social-login .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-weight: 500;
}

.login-card .social-login .btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.login-card .btn-google {
    background: #dd4b39;
    color: white;
}

.login-card .btn-facebook {
    background: #3b5998;
    color: white;
}

.login-card .login-image {
    height: 100%;
    object-fit: cover;
}

@media (max-width:1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width:991.98px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .login-card .login-image {
        height: 300px;
    }
}

@media (max-width:767.98px) {
    .hero-section {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .breed-card img {
        height: 200px;
    }
}

@media (max-width:575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .login-card .card-body {
        padding: 30px 20px;
    }
}

.hero-section-1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #a18cd1 100%);
    position: relative;
    overflow: hidden;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

.result-box {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d6efd;
}

.back-rnd-hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #a18cd1 100%);
}
