/* Reset and Base Styles */@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #3374A2;
background: radial-gradient(circle,rgba(51, 116, 162, 1) 20%, rgba(17, 75, 116, 1) 59%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headings */
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    
    
}

.cta-button{
    width:350px;
    display: block;
}

.cta-button img{
    width:100%;
}

.section-desc {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width:500px;
    margin:0 auto 60px;
    color: #fff;
}

/* Header Styles */
.header {
    background-color: #00000050;
    position: sticky;
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
      
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
}

.logo-icon {
    width: 70px;
    height: auto;
    position: relative;
}  

.navbar-toggler{ background: #fff;}


.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
    margin-left: 10px;
}
.nav-link:focus,
.nav-link:hover{
    color: #ffffff;
}

.nav-link.new-tag::before {
    content: '';
    background-image: url(img/new-tag.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 35px;
    height: 20px;
    position: absolute;
    top: -15px;
    right: -15px;
    
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background-image: url(img/hero-bg.jpg);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

 

.hero-text h1 {
    font-size: 3.7rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: normal;
    color: #ffffff;
}

.hero-text .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    color: #e0e0e0;
}



/* Hero Visual - Ludo Board */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


.ludo-board{ max-width:100%; margin:0px auto; }

.ludo-dice{ width:100px; }

.board-section {
    position: absolute;
    width: 50%;
    height: 50%;
}

.board-section.red {
    top: 0;
    left: 0;
   background:#EC1C23;
    border-radius: 0 0 100% 0;
}

.board-section.green {
    top: 0;
    right: 0;
   background:#019A46;
    border-radius: 0 0 0 100%;
}

.board-section.yellow {
    bottom: 0;
    left: 0;
    background:#DFC10B;
    border-radius: 0 100% 0 0;
}

.board-section.blue {
    bottom: 0;
    right: 0;
    background:#27AEFF;
    border-radius: 100% 0 0 0;
}

.board-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.center-logo {
    font-weight: bold;
    color: #1a2332;
    font-size: 1.8rem;
}

/* Dice */
.dice-container {
    position: absolute;
    top: -60px;
    right: -60px;
    display: flex;
    gap: 25px;
}

.dice {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    padding: 8px;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dice-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.dice-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.dot {
    width: 9px;
    height: 9px;
    background: #1a2332;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
}

/* Trust Indicators */
.trust-indicators {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 40px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.trust-indicators .trust-item{
    font-size: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    color: #ffffff;
}
.trust-item strong{
    display: block;
}

.trust-item h4{
    font-size:25px;
    font-weight: 400;
    margin-bottom:0;
}

.trust-item img {
    height:60px;
}

.app-stores {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.store-button {
    transition: transform 0.3s ease;
    display: block;
}

.store-button:hover {
    transform: scale(1.02);
}


/* Features Section */
.features {
    padding: 100px 0;
    
}

.feature-box {
    padding: 15px;
    text-align: center;
    border-radius: 25px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    gap:15px;
    flex-direction: column;
    justify-content: center;
}
 
.feature-box.blue {
    background-color: #27AEFF;
}
.feature-box.red {
    background-color: #EC1C23;
}
.feature-box.yellow {
    background-color: #DFC10B;
}
.feature-box.green {
    background-color: #019A46;
}
 
.feature-icon {
    width: 100%;
    height: 150px;
    background-color:#ffffff80;
    display: flex;
    border-radius:20px;
    align-items: center;
    justify-content: center;
    
}

.feature-icon img {
    width:100px;
}

.feature-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-box p {
    color: #e0e0e0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background:#15151530;
}

.info-section 
.section-heading{ text-align: left; }
 

.info-text h3 {
    font-size: 20px;
    margin: 35px 0 20px;
    color: #fff;
    font-weight: 700;
}

.info-text p {
    margin-bottom: 25px;
    
    line-height: 1.8;
    color: #fff;
    font-size: 14px;
}

.info-text ul {
    margin: 20px 0 25px 0;
}

.info-text li {
    margin-bottom: 12px;
    
    color: #fff;
    font-size: 14px;
}

.feature-list {
    
    gap: 20px;
    margin: 25px 0;
}
.feature-list ul{
    padding-left:0 !important;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.95;
    color: #e0e0e0;
}

.feature-item i {
    color: #ff6b35;
    width: 25px;
    font-size: 1.2rem;
}

.info-visual{
    position: sticky;
    top: 100px;

}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
}
.phone-mockup img{
    width:100%;
}
 
/* Screenshots Section with Swiper */
.screenshots {
    padding: 100px 0;
    background:url(img/slider-bg.jpg) ;
}

.screenshots-swiper {
    padding: 40px 0;
}

.screenshots-swiper .swiper-wrapper{
    padding: 50px 0;
}

.swiper-slide { transition: all 0.3s ease; transform: scale(1) !important; z-index:1; opacity:0.7; }
.swiper-slide.swiper-slide-prev,
.swiper-slide.swiper-slide-next { transform: scale(1.1)  !important; z-index:2; opacity:0.8;}
.swiper-slide.swiper-slide-active { transform: scale(1.2)  !important; z-index:5;  opacity:1;  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1); }


.swiper-slide img{ width:100%; }

.page-heading{
     background-color: #00000020;
     color:#fff;
}

 


.common_content_box {
    
    margin-top: 50px;
    padding-bottom: 50px;
    font-size: 12px;
    line-height: 25px; 
    padding-top: 20px;
}

 .common_content_box p{
  font-size:13px;
 }

  .common_content_box p strong{
   font-weight:700;
   font-size:120%;
 }
  .common_content_box a {
    color: yellow;
 }


/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ff6b35 !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 107, 53, 0.2);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff6b35;
    transform: scale(1.3);
}

/* Benefits Section */
.benefits {
    padding: 50px 0;
    
    border-top: solid 1px #ffffff10;
}

.benefit-box {
     
    text-align: center;
    padding: 0px 50px;
    height: 100%;
}
 
.benefit-icon {
    width: 90px;
    height: auto;
    margin: 0 auto 25px; 
}
.benefit-icon img{
    width:100%;
}
 
.benefit-box h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.benefit-box p {
   margin:0;
    line-height: 1.7;
    color: #fff;
    font-size:14px;
}

/* Footer */
.footer {
    background: #1F608F;
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-logo img{
    width: 60px;
    
}

.footer-logo .ludo-token::before {
    width: 18px;
    height: 18px;
}

.footer-links {
    display: flex;
    gap: 35px;
    justify-content: flex-end;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
     font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}
 

.copyright {
    text-align: center;
    
    font-size: 14px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 25px;
}
.copyright span{
    color:#FFC827;
}

/* Responsive Design */


@media (max-width: 1100px) {
    
.trust-indicators .trust-item{
    font-size: 25px;
}

.trust-item {
    gap: 10px;
    
}

.trust-item h4{
    font-size:20px;

}

.trust-item img {
    height:40px;
}
}
@media (max-width: 991px) {
    
    .hero-img{ 
        text-align: center;
        margin-bottom: 20px;
    }
    .hero-text{
         text-align: center;
    }
    .hero-text h1 {
        text-align: center;
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
        text-align: center;
    }

    .benefit-box{
        padding:0px;
    }
    .benefit-box h3{
        font-size:20px;
    }
    .cta-button{
        width:250px;
    }
}

@media (max-width: 768px) {

    .footer-logo{ text-align: center;}

    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    
    .trust-indicators .container {
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .app-stores {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .ludo-board {
        width: 280px;
        height: 280px;
    }
    
    .phone-screen {
        width: 280px;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .features,
    .info-section,
    .screenshots,
    .benefits {
        padding: 60px 0;
    }
    
    .ludo-board {
        width: 250px;
        height: 250px;
    }
    
    .phone-screen {
        width: 250px;
        height: 450px;
    }
    
    .dice-container {
        top: -40px;
        right: -40px;
    }
    
    .dice {
        width: 35px;
        height: 35px;
    }
    
    .feature-box,
    .benefit-box {
        padding: 35px 25px;
    }
}
