*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#fff;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

}

.container{
    width:92%;
    max-width:1300px;
    margin:auto;
}

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#000;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
    z-index:9999;

}

.header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    height:85px;

}

.logo{

    font-size:30px;
    font-weight:800;
    color:#fff;
    text-decoration:none;
    font-family:Poppins,sans-serif;

}

.logo span{

    color:#D4AF37;

}

.navbar{

    display:flex;
    align-items:center;
    gap:35px;
	text-transform: uppercase;

}

.navbar a{

    text-decoration:none;
    color:#fff;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:.3s;

}

.navbar a:hover{

    color:#D4AF37;

}

.navbar a:not(.btn)::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.4s;

}

.navbar a:hover::after{

    width:100%;

}

.btn{

    padding:13px 28px;
    background:#fff;
    color: #000 !important;
    border-radius:40px;
    transition:.3s;

}

.btn:hover{

    background:#D4AF37;
    color:#fff !important;

}

.btn::after{

    display:none;

}

#menu-toggle{

    display:none;

}

.menu-btn{

    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;

}

.menu-btn span{

    width:28px;
    height:3px;
    background:#fff;
    transition:.3s;
    border-radius:20px;

}

.hero{

    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:55px;
    font-family:Poppins;
    font-weight:800;
    color:#fff;

}

@media(max-width:991px){

.menu-btn{

display:flex;

}

.navbar{

position:absolute;
top:85px;
left:0;
width:100%;

background:#000;

flex-direction:column;

overflow:hidden;

max-height:0;

transition:.4s;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.navbar a{

padding: 18px 18px;

width:100%;

}

.btn{

margin:20px 0;

display:inline-block;

}

#menu-toggle:checked~.navbar{

max-height:600px;

}

.hero{

font-size:36px;
text-align:center;
padding:20px;

}

}

@media(max-width:576px){

.logo{

font-size:24px;

}

.header .container{

height:75px;

}

.navbar{

top: 55px;
        /* align-items: center; */
        gap: 0px;
        text-transform: uppercase;
        display: flex;
}

.hero{

font-size:28px;

}

}
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    animation:slider 15s infinite;
}

.slide1{
    background-image:url('https://gcloudrooms.in/images/slider1.jpg');
    animation-delay:0s;
}

.slide2{
    background-image:url('https://gcloudrooms.in/images/slider2.jpg');
    animation-delay:5s;
}

.slide3{
    background-image:url('https://gcloudrooms.in/images/slider3.jpg');
    animation-delay:10s;
}

@keyframes slider{

    0%{
        opacity:0;
        transform:scale(1);
    }

    5%{
        opacity:1;
    }

    30%{
        opacity:1;
        transform:scale(1.08);
    }

    35%{
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}

.content{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:5;
    width:90%;
    max-width:900px;

}

.content h4{

    font-size:22px;
    color:#D4AF37;
    margin-bottom:20px;

}

.content h1{

    font-size:70px;
    font-weight:800;
    margin-bottom:20px;

}

.content p{

    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;

}

.buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.buttons a{

    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.buttons a:first-child{

    background:#D4AF37;
    color:#fff;

}

.buttons a:last-child{

    border:2px solid #D4AF37;
    color:#D4AF37;

}

.buttons a:hover{

    transform:translateY(-5px);
	color:#fff;

}

@media(max-width:991px){

    .content h1{
        font-size:48px;
    }

    .content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-slider{
        height:80vh;
    }

    .content h1{
        font-size:34px;
    }

    .content h4{
        font-size:18px;
    }

    .content p{
        font-size:15px;
    }

    .buttons a{
        padding:12px 25px;
        font-size:14px;
    }

}

/*=====================================
ABOUT SECTION
=====================================*/

.about-section{
    width:100%;
    padding:100px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.08;
    left:-180px;
    top:-150px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:#b8860b;
    filter:blur(180px);
    opacity:.08;
    right:-150px;
    bottom:-150px;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/*=====================
IMAGE
======================*/

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    display:block;
    border:4px solid rgba(212,175,55,.2);
    box-shadow:0 25px 50px rgba(0,0,0,.6);
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.03);
    border-color:#d4af37;
}

/* Gold Border */

.about-image::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid #d4af37;
    border-radius:20px;
    top:18px;
    left:18px;
    z-index:-1;
}

/*=====================
CONTENT
======================*/

.about-content{
    color:#fff;
}

.sub-title{
    display:inline-block;
    color:#d4af37;
    text-transform:uppercase;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:18px;
}

.about-content h2{
    font-size:34px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.about-content p{
    color:#cfcfcf;
    line-height:30px;
    margin-bottom:20px;
    font-size:17px;
	text-align:justify;
}

/*=====================
INFO BOX
======================*/

.about-info{
    display:flex;
    gap:20px;
    margin-top:40px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.about-info .box{
    flex:1;
    min-width:150px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(212,175,55,.25);
    backdrop-filter:blur(15px);
    padding:25px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
}

.about-info .box:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.15);
}

.about-info h3{
    color:#d4af37;
    font-size:36px;
    margin-bottom:10px;
    font-weight:700;
}

.about-info p{
    color:#ffffff;
    margin:0;
    font-size:15px;
}

/*=====================
BUTTON
======================*/

.about-btn{
    display:inline-block;
    padding:15px 38px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 12px 30px rgba(212,175,55,.3);
}

.about-btn:hover{
    background:#f2cf63;
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(212,175,55,.4);
}

/*=====================
TABLET
======================*/

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.about-image{
    max-width:600px;
    margin:auto;
}

.about-content{
    text-align:center;
}

.about-content p{
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.about-info{
    justify-content:center;
}

}

/*=====================
MOBILE
======================*/

@media(max-width:768px){

.about-section{
    padding:70px 20px;
}

.about-content h2{
    font-size:34px;
}

.about-content p{
    font-size:16px;
    line-height:28px;
}

.about-info{
    flex-direction:column;
}

.about-info .box{
    width:100%;
}

.about-btn{
    width:100%;
    text-align:center;
}

.about-image::before{
    display:none;
}

}

@media(max-width:480px){

.about-content h2{
    font-size:28px;
}

.sub-title{
    font-size:14px;
    letter-spacing:2px;
}

.about-info h3{
    font-size:30px;
}

.about-image img{
    border-radius:15px;
}

}

/*==================================
FEATURED MODELS
==================================*/

.models-section{
    width:100%;
    padding:100px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Gold Glow */

.models-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.08;
    top:-180px;
    right:-150px;
}

.models-section::after{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:#b8860b;
    filter:blur(180px);
    opacity:.08;
    left:-120px;
    bottom:-120px;
}

.models-section .container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/*=========================
SECTION TITLE
==========================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
    font-size:15px;
}

.section-title h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    color:#bdbdbd;
    max-width:650px;
    margin:auto;
    line-height:30px;
    font-size:17px;
}

/*=========================
GRID
==========================*/

.models-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=========================
CARD
==========================*/

.model-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    transition:.5s;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.5);
}

.model-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    transition:.6s;
}

/* Overlay */

.model-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.2),
    transparent);
    opacity:0;
    transition:.5s;
}

.model-card:hover::before{
    opacity:1;
}

.model-card:hover img{
    transform:scale(1.1);
}

/* Gold Border */

.model-card:hover{
    border-color:#d4af37;
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

/*=========================
MODEL INFO
==========================*/

.model-inf{
    text-align: center;
    color: #fff;
    padding: 10px;
}

.model-card:hover .model-inf{
    bottom:0;
}

.model-inf h3{
    color:#fff;
    font-size:24px;
    margin-bottom:8px;
    font-weight:600;
}

.model-inf span{
    color:#d4af37;
    font-size:15px;
    letter-spacing:1px;
}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.models-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.models-section{
    padding:70px 20px;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:16px;
    line-height:28px;
}

.models-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.model-card img{
    height:420px;
}

}

@media(max-width:480px){

.section-title h2{
    font-size:28px;
    color:fff;
}

.section-title span{
    font-size:14px;
}

.model-card img{
    height:380px;
}

.model-info h3{
    font-size:22px;
}

}
/*====================================
AUDITIONS SECTION
====================================*/

.auditions-section{
    width:100%;
    padding:100px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Gold Glow Background */

.auditions-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.08;
    left:-180px;
    top:-150px;
}

.auditions-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:#b8860b;
    filter:blur(180px);
    opacity:.08;
    right:-150px;
    bottom:-150px;
}

.auditions-section .container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/*====================================
SECTION TITLE
====================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#bfbfbf;
    line-height:30px;
    font-size:17px;
}

/*====================================
VIDEO GRID
====================================*/

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*====================================
VIDEO CARD
====================================*/

.video-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(212,175,55,.18);
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    backdrop-filter:blur(12px);
    box-shadow:0 15px 35px rgba(0,0,0,.5);
}

.video-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

/*====================================
RESPONSIVE VIDEO
====================================*/

.video{
    position:relative;
    width:100%;
    padding-bottom:56.25%;
    overflow:hidden;
}

.video iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
    transition:.4s;
}

.video-card:hover iframe{
    transform:scale(1.03);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1100px){

.video-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.auditions-section{
    padding:70px 20px;
}

.section-title h2{
    font-size:34px;
}

.section-title p{
    font-size:16px;
    line-height:28px;
}

.video-grid{
    grid-template-columns:1fr;
    gap:25px;
}

}

@media(max-width:480px){

.section-title h2{
    font-size:28px;
}

.section-title span{
    font-size:14px;
    letter-spacing:2px;
}

.video-card{
    border-radius:15px;
}

}


/*====================================
FOOTER
====================================*/

.footer{
    background:#050505;
    padding:80px 0% 25px;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(212,175,55,.15);
}

/* Gold Glow */

.footer::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.08;
    left:-180px;
    top:-180px;
}

.footer::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#b8860b;
    filter:blur(180px);
    opacity:.08;
    right:-180px;
    bottom:-180px;
}

.footer .container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/*====================================
GRID
====================================*/

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.3fr 1.5fr;
    gap:40px;
}

/*====================================
BOX
====================================*/

.footer-box h2{
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.footer-box h2 span{
    color:#d4af37;
}

.footer-box h3{
    color:#d4af37;
    font-size:24px;
    margin-bottom:20px;
}

.footer-box p{
    color:#bfbfbf;
    line-height:30px;
    margin-bottom:15px;
    font-size:16px;
}

/*====================================
LINKS
====================================*/

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:14px;
}

.footer-box ul li a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

.footer-box ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#d4af37;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#d4af37;
}

.footer-box ul li a:hover::after{
    width:100%;
}

/*====================================
SOCIAL BUTTONS
====================================*/

.social-buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-buttons a{
    padding:12px 24px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:0.3s ease;
    font-family:Arial, sans-serif;
}

/* Facebook Official Blue */
.social-buttons .facebook{
    background:#1877F2;
}

.social-buttons .facebook:hover{
    background:#166FE5;
    transform:translateY(-3px);
}

/* Instagram Official Gradient */
.social-buttons .instagram{
    background:linear-gradient(
        45deg,
        #F58529 0%,
        #FEDA77 20%,
        #DD2A7B 50%,
        #8134AF 75%,
        #515BD4 100%
    );
}

.social-buttons .instagram:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(221,42,123,0.4);
}

/*====================================
GOOGLE MAP
====================================*/

.footer-box iframe{
    width:100%;
    height:260px;
    border:2px solid rgba(212,175,55,.25);
    border-radius:15px;
}

/*====================================
COPYRIGHT
====================================*/

.copyright{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    text-align:center;
    color:#999;
    font-size:15px;
}

/*====================================
TABLET
====================================*/

@media(max-width:1100px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.footer{
    padding:60px 20px 25px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.footer-box{
    text-align: justify;
}
}

.social-buttons{
    justify-content:center;
}

.footer-box iframe{
    height:250px;
}

.footer-box h2{
    font-size:28px;
}

.footer-box h3{
    font-size:22px;
}

}

@media(max-width:480px){

.footer-box h2{
    font-size:24px;
}

.footer-box h3{
    font-size:20px;
}

.footer-box p{
    font-size:15px;
    line-height:28px;
}

.social-buttons{
    flex-direction:column;
}

.social-buttons a{
    width:100%;
    text-align:center;
}

.footer-box iframe{
    height:220px;
}

.copyright{
    font-size:14px;
}

}

/*=================================
SOCIAL SECTION
=================================*/

.social-section{
    width:100%;
    padding:100px 8%;
    background:#050505;
    position:relative;
    overflow:hidden;
}

/* Gold Glow */

.social-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.08;
    left:-150px;
    top:-150px;
}

.social-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#b8860b;
    filter:blur(180px);
    opacity:.08;
    right:-150px;
    bottom:-150px;
}

.social-section .container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/*=================================
SECTION TITLE
=================================*/

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
}

.section-heading h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
}

.section-heading p{
    color:#bfbfbf;
    max-width:720px;
    margin:auto;
    line-height:30px;
    font-size:17px;
}

/*=================================
SOCIAL WRAPPER
=================================*/

.social-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/*=================================
SOCIAL BOX
=================================*/

.social-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(212,175,55,.20);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:25px;
    transition:.4s;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.5);
}

.social-box:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.social-box h3{
    color:#d4af37;
    text-align:center;
    margin-bottom:20px;
    font-size:28px;
}

/*=================================
FACEBOOK
=================================*/

.social-box iframe{
    width:100%;
    border-radius:15px;
}

/*=================================
INSTAGRAM CARD
=================================*/

.instagram-card{
    text-align:center;
}

.instagram-card img{
    width:100%;
    border-radius:15px;
    margin-bottom:20px;
    transition:.5s;
}

.instagram-card:hover img{
    transform:scale(1.04);
}

.instagram-card h4{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.instagram-card p{
    color:#cfcfcf;
    line-height:28px;
    margin-bottom:30px;
}

/*=================================
BUTTON
=================================*/

.instagram-card a{
    display:inline-block;
    padding:14px 35px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(212,175,55,.3);
}

.instagram-card a:hover{
    background:#f1cf66;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(212,175,55,.4);
}

/*=================================
TABLET
=================================*/

@media(max-width:992px){

.social-wrapper{
    grid-template-columns:1fr;
}

.social-box iframe{
    height:500px;
}

}

/*=================================
MOBILE
=================================*/

@media(max-width:768px){

.social-section{
    padding:70px 20px;
}

.section-heading h2{
    font-size:34px;
}

.section-heading p{
    font-size:16px;
    line-height:28px;
}

.social-box{
    padding:20px;
}

.social-box h3{
    font-size:24px;
}

.social-box iframe{
    height:450px;
}

.instagram-card h4{
    font-size:22px;
}

}

@media(max-width:480px){

.section-heading h2{
    font-size:28px;
}

.section-heading span{
    font-size:14px;
    letter-spacing:2px;
}

.social-box iframe{
    height:400px;
}

.instagram-card a{
    width:100%;
}

}

/*==========================
   MODELS HERO SECTION
==========================*/

.models-hero{
    position:relative;
    width:100%;
    min-height:90vh;
    background:url("https://gcloudrooms.in/denproduction/images/banner.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.models-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.55));
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:20px;
    animation:fadeUp 1s ease;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:#D4AF37;
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    border-radius:30px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#f2f2f2;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    padding:15px 38px;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
    letter-spacing:1px;
}

.btn-primary{
    background:#D4AF37;
    color:#fff;
}

.btn-primary:hover{
    background:#fff;
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#fff;
    transform:translateY(-5px);
}

/* Animation */

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/*==========================
      Tablet
==========================*/

@media(max-width:992px){

.models-hero{
min-height:75vh;
}

.hero-content h1{
font-size:52px;
}

.hero-content p{
font-size:18px;
}

}

/*==========================
      Mobile
==========================*/

@media(max-width:768px){

.models-hero{
min-height:70vh;
padding:70px 15px;
}

.hero-tag{
font-size:12px;
padding:7px 16px;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
line-height:1.7;
}

.hero-buttons{
flex-direction:column;
align-items:center;
gap:15px;
}

.btn-primary,
.btn-outline{
width:230px;
text-align:center;
padding:14px 20px;
}

}

/*==========================
   Small Mobile
==========================*/

@media(max-width:480px){

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:15px;
}

.btn-primary,
.btn-outline{
width:100%;
max-width:280px;
}

}
/*==============================
      CONTACT INFO SECTION
===============================*/

.contact-info-section{
    padding:90px 20px;
    background:#000000;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Heading */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#D4AF37;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#fff;
    font-weight:800;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* Top Cards */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:60px;
}

.contact-card{
    background:#393535a1;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card .icon{
    width:70px;
    height:70px;
    background:#D4AF37;
    color:#fff;
    font-size:26px;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:18px;
    color:#fff;
}

.contact-card p,
.contact-card small{
    color:#666;
    line-height:1.8;
}

.contact-card a{
    display:block;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    margin:10px 0;
    transition:.3s;
}

.contact-card a:hover{
    color:#D4AF37;
}

/* Office Cards */

.office-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.office-card{
    background:#393535a1;
    color:#fff;
    padding:40px;
    border-radius:18px;
    transition:.4s;
}

.office-card:hover{
    background:#D4AF37;
    color:#fff;
}

.office-card h3{
    margin-bottom:20px;
    font-size:28px;
}

.office-card h3 i{
    margin-right:10px;
}

.office-card p{
    line-height:1.9;
    margin-bottom:18px;
}

.office-card strong{
    font-size:18px;
}

/* Tablet */

@media(max-width:992px){

.contact-grid{
grid-template-columns:1fr 1fr;
}

.office-grid{
grid-template-columns:1fr;
}

}

/* Mobile */

@media(max-width:768px){

.contact-info-section{
padding:70px 15px;
}

.section-title h2{
font-size:34px;
}

.contact-grid{
grid-template-columns:1fr;
}

.contact-card{
padding:30px 25px;
}

.office-card{
padding:30px;
}

.office-card h3{
font-size:24px;
}

}

/* Small Mobile */

@media(max-width:480px){

.section-title h2{
font-size:28px;
}

.section-title p{
font-size:15px;
}

.contact-card .icon{
width:60px;
height:60px;
font-size:22px;
}

.office-card{
padding:25px;
}

.office-card h3{
font-size:22px;
}

}
/*=========================
      GOOGLE MAP
==========================*/

.map-section{
    padding:80px 20px;
    background:#000;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:#D4AF37;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    color:#fff;
    font-weight:700;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.map-container{
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}

/* Tablet */

@media (max-width:992px){

    .map-container{
        height:420px;
    }

    .section-title h2{
        font-size:36px;
    }

}

/* Mobile */

@media (max-width:768px){

    .map-section{
        padding:60px 15px;
    }

    .map-container{
        height:350px;
        border-radius:15px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:15px;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .map-container{
        height:280px;
    }

    .section-title h2{
        font-size:26px;
    }

}

.photo-services{
    width:100%;
    padding:70px 6%;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#fff;
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.service-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.15));
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:20px;
}

.overlay h3{
    color:#fff;
    font-size:22px;
    text-align:center;
    font-weight:600;
    transform:translateY(10px);
    transition:.4s;
}

.service-card:hover img{
    transform:scale(1.12);
}

.service-card:hover .overlay h3{
    transform:translateY(0);
    color:#FFD700;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:16px;
}

.service-card img{
    height:230px;
}

.overlay h3{
    font-size:18px;
}

}

@media(max-width:480px){

.photo-services{
    padding:50px 20px;
}

.service-card img{
    height:210px;
}

.section-title h2{
    font-size:26px;
}

}
.gallery{
    width:90%;
    margin:50px auto;
}

.gallery h2{
    text-align:center;
    margin-bottom:30px;
    font-size:35px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.08);
}

/* Lightbox */

#lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:80%;
    max-height:80%;
    transition:.3s;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    font-size:28px;
    width:55px;
    height:55px;
    cursor:pointer;
    border-radius:50%;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.zoom-controls{
    position:absolute;
    bottom:35px;
    display:flex;
    gap:15px;
}

.zoom-controls button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    background:#fff;
}

.zoom-controls button:hover{
    background:#ffd700;
}

/* Mobile */

@media(max-width:768px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid img{
height:180px;
}

#lightbox img{
max-width:95%;
max-height:70%;
}

.prev,
.next{
width:45px;
height:45px;
font-size:22px;
}

.zoom-controls button{
width:45px;
height:45px;
font-size:22px;
}

.close{
font-size:40px;
right:20px;
}

}

@media(max-width:480px){

.gallery-grid{
grid-template-columns:1fr;
}

.gallery h2{
font-size:28px;
}

}

.crew-section{
padding:80px 8%;
background:#fff;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
font-weight:700;
color:#fff;
letter-spacing:2px;
}

.section-title p{
margin-top:10px;
color:#777;
}

.crew-container{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:35px;

}

.crew-card{

background:#fff;
border-radius:20px;
overflow:hidden;
position:relative;
transition:.5s;
box-shadow:0 15px 35px rgba(0,0,0,.08);

animation:fadeUp 1s ease;

}

.crew-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.crew-img{

height:370px;
overflow:hidden;

}

.crew-img img{

width:100%;
height:100%;
object-fit:cover;
transition:.8s;

}

.crew-card:hover img{

transform:scale(1.15);

}

.crew-info{

padding:20px;
text-align:center;

}

.crew-info h3{

font-size:20px;
color:#fff;
letter-spacing:1px;

}

.crew-info span{

display:block;
margin-top:5px;
color:#D4AF37;
font-weight:600;

}

.social{

margin-top:18px;

display:flex;

justify-content:center;

gap:15px;

opacity:0;

transform:translateY(20px);

transition:.5s;

}

.crew-card:hover .social{

opacity:1;

transform:translateY(0);

}

.social a{

width:42px;

height:42px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#fff;

color:#fff;

text-decoration:none;

transition:.4s;

}

.social a:hover{

background:#D4AF37;

transform:rotate(360deg);

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@media(max-width:1100px){

.crew-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.section-title h2{

font-size:30px;

}

.crew-container{

grid-template-columns:1fr;

}

.crew-img{

height:420px;

}

}
.audition-updates{

padding:90px 7%;
background:#fff;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

color:#D4AF37;
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;

}

.section-title h2{

font-size:42px;
margin:12px 0;
color:#fff;

}

.section-title p{

max-width:650px;
margin:auto;
color:#666;
line-height:1.8;

}

.updates-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.update-card{

background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 20px 45px rgba(0,0,0,.08);
transition:.45s;
position:relative;

animation:fadeUp .8s ease;

}

.update-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 60px rgba(0,0,0,.18);

}

.update-image{

position:relative;
overflow:hidden;

}

.update-image img{

width:100%;
height:260px;
object-fit:cover;
transition:.6s;

}

.update-card:hover img{

transform:scale(1.12);

}

.update-image::after{

content:'';
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(to top,rgba(0,0,0,.45),transparent);

}

.date{

position:absolute;
top:18px;
left:18px;
background:#D4AF37;
color:#fff;
padding:12px 18px;
border-radius:10px;
text-align:center;
z-index:2;

}

.date h3{

font-size:24px;

}

.date span{

font-size:13px;
font-weight:600;

}

.update-content{

padding:28px;

}

.category{

display:inline-block;
background:#fff;
color:#fff;
padding:7px 18px;
border-radius:30px;
font-size:13px;
margin-bottom:18px;

}

.update-content h3{

font-size:24px;
margin-bottom:15px;
line-height:1.4;
color:#fff;

}

.update-content p{

color:#666;
line-height:1.8;
margin-bottom:25px;

}

.update-content a{

display:inline-block;
text-decoration:none;
background:#fff;
color:#fff;
padding:13px 28px;
border-radius:50px;
transition:.4s;

}

.update-content a:hover{

background:#D4AF37;
color:#fff;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(60px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@media(max-width:768px){

.section-title h2{

font-size:32px;

}

.update-image img{

height:220px;

}

}
.model-showcase{
    width:100%;
    min-height:100vh;
    padding:120px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:
    radial-gradient(circle at top,#2d2205 0%,#050505 45%,#000 100%);
    overflow:hidden;
    position:relative;
}

/* Background Glow */

.model-showcase::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#d4af37;
    filter:blur(180px);
    opacity:.12;
    top:-180px;
    left:-150px;
}

.model-showcase::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:#b8860b;
    filter:blur(170px);
    opacity:.10;
    bottom:-180px;
    right:-120px;
}

/*==============================
LEFT CONTENT
==============================*/

.model-content{
    flex:1;
    position:relative;
    z-index:5;
}

.sub-title{
    display:inline-block;
    color:#d4af37;
    font-size:16px;
    font-weight:600;
    letter-spacing:4px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.model-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
	color:#fff;
}

.model-content h1 span{
    color:#d4af37;
}

.model-content p{
    max-width:550px;
    color:#d6d6d6;
    font-size:18px;
    line-height:32px;
    margin-bottom:40px;
	text-align: justify;
}

/*==============================
BUTTONS
==============================*/

.buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.buttons a{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn1{
    background:#d4af37;
    color:#000;
    box-shadow:0 0 25px rgba(212,175,55,.35);
}

.btn1:hover{
    transform:translateY(-6px);
    background:#f2cf63;
    box-shadow:0 15px 40px rgba(212,175,55,.45);
}

.btn2{
    border:2px solid #d4af37;
    color:#d4af37;
    background:transparent;
}

.btn2:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-6px);
}

/*==============================
RIGHT IMAGE
==============================*/

.model-image{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:5;
}

.circle{
    position:absolute;
    width:460px;
    height:460px;
    border-radius:50%;
    background:radial-gradient(circle,#d4af37,#7d5d05,#000);
    opacity:.18;
    animation:pulse 5s infinite;
}

.model-image img{
    width:100%;
    max-width:480px;
    position:relative;
    z-index:2;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 45px rgba(0,0,0,.8));
}

/*==============================
FLOATING SHAPES
==============================*/

.shape{
    position:absolute;
    border:2px solid rgba(212,175,55,.45);
    animation:rotate 10s linear infinite;
}

.shape1{
    width:60px;
    height:60px;
    top:5%;
    left:10%;
}

.shape2{
    width:35px;
    height:35px;
    border-radius:50%;
    right:8%;
    top:20%;
}

.shape3{
    width:70px;
    height:70px;
    bottom:15%;
    left:12%;
    transform:rotate(45deg);
}

.shape4{
    width:45px;
    height:45px;
    right:12%;
    bottom:10%;
    border-radius:50%;
}

/*==============================
ANIMATIONS
==============================*/

@keyframes float{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-20px);
}

}

@keyframes pulse{

0%,100%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

}

@keyframes rotate{

100%{
transform:rotate(360deg);
}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.model-showcase{
    flex-direction:column-reverse;
    text-align:center;
    padding:120px 6%;
}

.model-content p{
    margin:auto;
    margin-bottom:35px;
}

.buttons{
    justify-content:center;
}

.model-content h1{
    font-size:50px;
}

.circle{
    width:360px;
    height:360px;
}

.model-image img{
    max-width:380px;
}

}

@media(max-width:768px){

.model-showcase{
    min-height:auto;
    padding:100px 20px 70px;
}

.model-content h1{
    font-size:38px;
}

.model-content p{
    font-size:16px;
    line-height:28px;
}

.circle{
    width:280px;
    height:280px;
}

.model-image img{
    max-width:300px;
}

.buttons{
    flex-direction:column;
    width:100%;
}

.buttons a{
    width:100%;
    text-align:center;
}

}

@media(max-width:480px){

.model-content h1{
    font-size:32px;
}

.sub-title{
    font-size:14px;
    letter-spacing:2px;
}

.circle{
    width:220px;
    height:220px;
}

.model-image img{
    max-width:240px;
}

}
.service-banner{
    position:relative;
    width:100%;
    min-height:70vh;
	padding-top: 80px;
    background:url("images/service-banner.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.service-banner .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(0,0,0,.88),
    rgba(0,0,0,.55),
    rgba(0,0,0,.75));
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.banner-content{
    max-width:650px;
    color:#fff;
    animation:fadeUp 1s ease;
}

.sub-title{
    display:inline-block;
    padding:8px 18px;
    background:rgba(212,175,55,.18);
    border:1px solid #d4af37;
    color:#d4af37;
    border-radius:30px;
    font-size:15px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.banner-content h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
	color:#d4af37;
}

.banner-content h1 span{
    color:#d4af37;
}

.banner-content p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:35px;
}

.banner-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
}

.btn-primary{
    background:#d4af37;
    color:#111;
}

.btn-primary:hover{
    background:#fff;
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #d4af37;
    color:#fff;
}

.btn-outline:hover{
    background:#d4af37;
    color:#111;
}

/* Animation */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Tablet */

@media(max-width:991px){

.banner-content h1{
    font-size:48px;
}

.banner-content p{
    font-size:16px;
}

.service-banner{
    min-height:60vh;
}

}

/* Mobile */

@media(max-width:768px){

.service-banner{
    min-height:55vh;
    text-align:center;
}

.banner-content{
    margin:auto;
}

.banner-content h1{
    font-size:36px;
}

.banner-content p{
    font-size:15px;
}

.banner-btns{
    justify-content:center;
}

.btn{
    padding:14px 28px;
}

}

/* Small Mobile */

@media(max-width:480px){

.banner-content h1{
    font-size:30px;
}

.sub-title{
    font-size:13px;
}

.banner-content p{
    font-size:14px;
}

}
/*==============================
    DEN NEWS SECTION
==============================*/
.den-news_col{
background:#000000;
padding: 100px 8%;
}
.den-news{
    background:#000000;
    border:1px solid #d4af37;
	border-radius:5px;
    overflow:hidden;
    position:relative;
}

.news-wrapper{
    display:flex;
    align-items:center;
    height:54px;
}

.news-title{
    background:#e53935;
    color:#fff;
    font-weight:700;
    padding:0 18px;
    height:54px;
    display:flex;
    align-items:center;
    white-space:nowrap;
    font-size:16px;
    letter-spacing:.5px;
}

.news-scroll{
    flex:1;
    overflow:hidden;
    position:relative;
}

.news-track{
    display:flex;
    align-items:center;
    white-space:nowrap;
    animation:scrollNews 28s linear infinite;
}

.news-track:hover{
    animation-play-state:paused;
}

.news-item{
    display:flex;
    align-items:center;
    font-size:16px;
    font-weight:500;
    color:#fff;
}

.news-item span{
    margin:0 35px;
}

.news-dot{
    color:#666;
    font-size:18px;
}

.news-controls{
    display:flex;
    align-items:center;
    background:#d4af37;
    padding:0 10px;
    gap:12px;
    border-left:1px solid #d4af37;
	border-radius:5px;
}

.news-btn{
    cursor:pointer;
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.news-btn:hover{
    color:#e53935;
}

@keyframes scrollNews{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}

/*==============================
Responsive
==============================*/

@media(max-width:768px){

.news-wrapper{
height:48px;
}

.news-title{
padding:0 14px;
font-size:14px;
height:48px;
}

.news-item{
font-size:14px;
}

.news-controls{
gap:8px;
padding:0 8px;
}

.news-btn{
font-size:15px;
}

}

@media(max-width:576px){

.news-title{
font-size:13px;
padding:0 10px;
}

.news-item{
font-size:13px;
}

.news-item span{
margin:0 20px;
}

}


/*==========================
MODELS SECTION
==========================*/

.models-section{
    background:#000;
    padding:80px 0;
}

.section-title h2{

    color:#333;
    font-size:48px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;

}

/* Card */

.model-card{

    background:#111;
    overflow:hidden;
    transition:.4s;
    text-align:center;
    position:relative;

}
.model-link{
    
    text-decoration: none;
    }
.model-card:hover{

    transform:translateY(-8px);

}

.model-image{

    overflow:hidden;

}

.model-image img{

    width:100%;
    height:430px;
    object-fit:cover;
    transition:.6s;

}

.model-card:hover img{

    transform:scale(1.08);

}

.model-info{

    padding:12px;
    background:#000;

}

.model-info h5{

    color:#ddd;
    font-size:17px;
    margin:0;
    font-weight:500;
    letter-spacing:1px;

}

/* Tablet */

@media(max-width:991px){

.section-title h2{

font-size:38px;

}

.model-image img{

height:380px;

}

}

/* Mobile */

@media(max-width:767px){

.models-section{

padding:60px 0;

}

.section-title h2{

font-size:30px;

}

.model-image img{

height:450px;

}

.model-card{

max-width:350px;
margin:auto;

}

}
.whatsapp-link{
    color:#25D366;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s;
}

.whatsapp-link:hover{
    color:#128C7E;
}

.whatsapp-link i{
    margin-right:6px;
    font-size:18px;
}
/* ==============================
   DEN NEWS TICKER
============================== */

.den-news-section {
    width: 100%;
    padding: 15px 10px;
    background: #000;
}

.den-news-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 40px;
    margin: 0 auto;

    display: flex;
    align-items: center;

    background: #fff;
    overflow: hidden;
}

/* NEWS TITLE */

.den-news-title {
    height: 40px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 5px;
}

/* NEWS CONTENT */

.den-news-content {
    position: relative;
    height: 40px;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #050505;
    border: 1px solid #d4af37;
}
/* MOVING TRACK */

.den-news-track {
    display: flex;
    align-items: center;
    width: max-content;

    animation: denNewsScroll 30s linear infinite;
}

/* NEWS ITEM */

.den-news-item {
    display: flex;
    align-items: center;

    white-space: nowrap;

    margin-right: 70px;

    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
}

.den-news-item a {
    color: #d4af37;
    text-decoration: none;
}

.den-news-item a:hover {
    color: #fff;
}

/* DOT */

.news-dot {
    font-size: 20px;
    margin-right: 12px;
    color: #fff;
}

/* ANIMATION */

@keyframes denNewsScroll {

    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* CONTROLS */

.den-news-controls {
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    padding: 0 5px;

    flex-shrink: 0;
}

.den-news-controls button {
    width: 28px;
    height: 30px;

    border: 0;
    background: transparent;

    color: #555;

    font-size: 22px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.den-news-controls button:hover {
    color: #e82f36;
}


/* ==============================
   TABLET
============================== */

@media (max-width: 768px) {

    .den-news-section {
        padding: 10px;
    }

    .den-news-wrapper {
        height: 38px;
    }

    .den-news-title {
        min-width: 85px;
        height: 38px;

        font-size: 11px;
    }

    .den-news-content {
        height: 38px;
    }

    .den-news-item {
        font-size: 12px;
        margin-right: 40px;
    }

    .den-news-controls {
        height: 38px;
    }

    .den-news-controls button {
        width: 22px;
        font-size: 18px;
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 480px) {

    .den-news-section {
        padding: 8px 5px;
    }

    .den-news-wrapper {
        height: 36px;
    }

    .den-news-title {
        min-width: 72px;
        height: 36px;

        font-size: 10px;
    }

    .den-news-content {
        height: 36px;
    }

    .den-news-item {
        font-size: 11px;
        margin-right: 35px;
    }

    .news-dot {
        font-size: 16px;
        margin-right: 7px;
    }

    .den-news-controls {
        height: 36px;
        padding: 0 2px;
    }

    .den-news-controls button {
        width: 18px;
        font-size: 16px;
    }

}