* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: rgb(197, 205, 230);
    font-family: 'Arial', sans-serif;
}
#main {
    width: 100%;
    position: relative;
}
#header {
    width: 100%;
    height: auto;
    min-height: 70px;
    background-color: rgb(236, 236, 199);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 15px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

#logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.text {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: color 0.3s ease;
    color: rgb(11, 11, 94);
}

.text:hover {
    color: rgb(39, 170, 217);
}

#contactdetails {
    font-size: 12px;
    max-width: 150px;
    color: rgb(4, 4, 93);
}

#contactdetails link {
    color: rgb(72, 130, 151);
    text-decoration: underline;
    word-break: break-all;
}

.icons {
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icons:hover {
    transform: scale(1.1);
    background-color: lightblue;
}

#login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#login:hover {
    background-color: lightblue;
}

#try {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

#try:hover {
    background-color: rgb(9, 66, 9);
}
#fakeheader {
    width: 100%;
    height: 100px;
    background-color: rgb(232, 233, 209);
}
#page1 {
    width: 100%;
    min-height: 100vh;
    background-color: Deep Midnight rgb(139, 139, 234);
    padding: 20px;
}

#strip {
    width: 100%;
    background-color:rgb(107, 151, 126);
    color: white;
    padding: 15px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

#strip u {
    cursor: pointer;
    margin-left: 10px;
}
#content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

#box1 {
    flex: 1 1 500px;
    min-width: 300px;
    padding: 30px;
    background-color: darkcyan;
    border-radius: 15px;
}

#box1 h1 {
    font-size: clamp(24px, 5vw, 36px);
    color:rgb(62, 87, 62);
    margin-bottom: 20px;
    line-height: 1.3;
}

#btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    color: white;
    background-color:lightblue ;
}

#btn1, #btn2 {
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1 1 150px;
    min-width: 150px;
}

#btn1 {
    color: white;
    background-color:lightblue ;
    color: white;
}

#btn1:hover {
    background-color:rgb(90, 159, 181) ;
    transform: translateY(-2px);
}
#btn2 {
    background-color: white;
    color:lightblue ;
    border: 1px solid lightblue;
}

#btn2:hover {
    background-color: rgb(100, 145, 160);
    transform: translateY(-2px);
    color:rgb(20, 59, 72) ;
}

#box2 {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box2 img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
}

#heading {
    width: 100%;
    text-align: center;
    color: rgb(46, 46, 102);
    background-color: rgb(166, 198, 187);
    padding: 50px 20px;
}

#heading h1 {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.4;
}

#page2 {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(196, 219, 240);
    padding: 50px 20px;
}

.stream-section {
    max-width: 1200px;
    margin: 0 auto;
}

.stream-section h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 50px;
    background: #eaeaea;
}
    
.stream-section h2 span {
    color: #e91e63;
}

/* Cards Container */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
     background: #ff4d4d;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card img {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    object-fit: contain;
}

.card h3 {
    font-size: 24px;
    margin: 20px 0;
}

.card button {
    padding: 12px 30px;
     background: teal;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.card button:hover {
    background: #006666;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    #header {
        padding: 10px 15px;
        justify-content: center;
    }
    
    #logo {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .text {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    #contactdetails {
        display: none;
    }
    
    .icons {
        font-size: 18px;
    }
    
    #login {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    #try {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    #fakeheader {
        height: 140px;
    }
    
    #content {
        padding: 10px;
        gap: 20px;
    }
    
    #box1 {
        padding: 20px;
    }
    
    #btns {
        flex-direction: column;
    }
    
    #btn1, #btn2 {
        width: 100%;
        min-width: auto;
    }
    
    #heading {
        padding: 30px 15px;
    }
    
    .cards {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #strip {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    #strip u {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }
    
    .stream-section h2 {
        margin-bottom: 30px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card img {
        width: 80px;
        height: 80px;
    }
    
    .card h3 {
        font-size: 20px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    #content {
        padding: 15px;
    }
    
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    #header {
        padding: 15px 50px;
    }
    
    #page1 {
        padding: 30px 50px;
    }
    
    #content {
        padding: 30px 50px;
    }
    
    .stream-section {
        max-width: 1400px;
    }
}
