:root {
    --bg: #6eb37e;
    --card-bg: linear-gradient(180deg, #110135, #0a0121);
    --accent: #38bdf8;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(56, 189, 248, 0.2);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

.main-cover {
    width: 100%;
    display: block;
    height: auto;
    opacity: 70%;
}


.panel-grid-content {
    display: flex;
    gap: 24px;
    width: 100%;
    margin: 30px auto;
    padding: 20px 50px; 
}

.panel-grid-content .panel-box:first-child {
    flex: 2.5; 
}

.panel-grid-content .panel-box:last-child {
    flex: 1;
    min-width: 300px; 
}

.panel-box {
    flex: 1;
    background: #4d6151;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; 
}



.panel-box.flex-column {
    justify-content: space-between; 
}

.panel-box .cta-wrapper {
    margin: 20px 0 0 0; 
}



.panel-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #66c894, #f1fff8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*-------------------------------------SCREENSHOT CHANGER---------------------------------------*/


.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 2.3 / 1; 
    overflow: hidden;
    border-radius: 12px;
    background: #3d4e40;
    margin: 0px auto;
}

.carousel img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease; 

}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6eb37e;
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

.next { right: 0; }
.prev { left: 0; }


.features-grid {
    display: flex;
    flex-direction: column; 
    gap: 16px;
    height: auto;
    animation: scrollCards 30s linear infinite;

}

@keyframes scrollCards {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.features-wrapper {
    height: 550px; 
    overflow: hidden;
}

.feature-card {
    display: flex;
    flex-direction: column; 
    background: #6eb37e;
    padding: 0px 20px 20px 20px; 
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center; 
    gap: 15px;
}

.feature-icon { 
    font-size: 1.8rem; 
    margin-bottom: 0; 
}

.feature-card h3 { 
    font-size: 1rem; 
    margin: 0;
    color: #004d21; 
}

.feature-card p { 
    font-size: 0.85rem; 
    margin: 0px 0 0 0; 
    color: #444444;
    font-weight: 800; 
}

.cta-wrapper { text-align: center; margin: 60px 0; }

.primary-btn {
    text-decoration: none;
    padding: 18px 40px;
    background: linear-gradient(135deg, #003d2d,  #009e74);
    color: white;
    font-weight: 800;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-block;
    width: 300px;
}

.pulse { animation: pulse-shadow 2s infinite; }

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(86, 255, 196, 0.564); }
    70% { box-shadow: 0 0 0 20px rgba(56,189,248,0); }
    100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
}

/*========================= CONTACT ============================*/

.contact-section { 
  padding: 10px 0px;
  background: linear-gradient(135deg, #262c27, #495b4d);
  width: 100%;
  margin: 30px auto;
  border-radius: 0px;    
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a1e3ff, #6366f1);
  opacity: 0.6;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto 20px;
  text-align: center;
}

.contact-header {
  margin-bottom: 30px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(135deg, #66c894, #f1fff8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-text {
  font-size: 1rem;
  background: linear-gradient(135deg,  #78b092, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #b7c0ff;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

/*=================================== CONTACT CARDS ================================*/

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 16px 28px;
  min-width: 260px;
  border-radius: 14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(130,150,255,0.4);
}

.contact-value {
  font-size: 1rem;
  color: #66c894;
  font-weight: 600;
}

/*================================== FOOTER ========================================*/
.footer {
  background: #0a0c10;
  padding: 40px 20px 25px;
  font-size: 14px;
  color: #8b8f98;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-built {
  color: #284747;
  line-height: 1;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.footer-logo {
  height: 40px;
  width: 40px;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
  border-radius: 8px;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-legal {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.footer-legal a {
  color: #284747;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-right {
  display: flex;
  align-items: center;   
  gap: 10px;
}

.footer-right:hover .footer-logo {
  transform: scale(1.05);
  transition: 0.3s ease;
}
.footer-separator {
color: #434343;
}
/*=============================== TRADE MARK ================================*/

.tm-mark {
    position: relative;
    top: -15px;        
    right: 8px;     
    font-size: 20px;   
    font-weight: normal;
    color: #284747;    
    opacity: 1;      
}

/*--------------------------------------------Title Underline------------------------------------------*/
.site-title {
    margin-bottom: 5px; 
    font-size: 2.5rem;
    color: #ffffff; 
}

.title-underline {
    width: 600px;           
    height: 10px;           
    background: linear-gradient(90deg, #ffffff,#393939); 
    border-radius: 2px;    
    align-items: left;
}


/*--------------------------------------------HEADER-----------------------------------------------------*/

.main-header {
    position: relative;
    width: 100%;
    background-image: url('https://adel-euai.github.io/asset-hub/banner/trading-journal-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding: 30px 50px 30px 50px;
}


.main-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.7); 
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.gradient-text {
    font-size: 2.2rem;
    font-weight: 620;
    text-transform: uppercase;
    margin: 0;
    display: inline-block;
    background: linear-gradient(135deg, #1b5b36, #b1ffd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 1 !important;
}

.subtitle {
    width: 100%; 
    Color:#dbffec !important; 
    font-size: 18px;
    font-weight: 600; 
    letter-spacing: 2px;
    margin: 35px 0 0 60px !important; 
    text-align: justify;
    line-height: 1.7;
    opacity: 1 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.nav-links {
    position: relative;
    z-index: 2;
    margin: 15px 0px 0px 30px;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color:  #6ddfc2 !important; 
    font-weight: 600;
    transition: 0.3s;
    opacity: 1 !important;
}

.nav-links a:hover {
    color: #ffffff !important;
}

.app-logo {
  z-index: 2;
  height: 70px;
  filter: drop-shadow(0 0 8px rgba(56, 248, 210, 0.9));
  border-radius: 12px;
  transition: transform 0.3s ease;
  margin-left: 20px;
  margin-top: 10px;
  opacity: 1 !important;
}

.app-logo:hover {
  transform: scale(1.1);
}

/*//////////////////////////////////////MOBILE//////////////////////////////////////////////*/

@media (max-width: 1024px) {

    .panel-grid-content {
        flex-direction: column;
        padding: 20px;
    }

    .panel-grid-content .panel-box:first-child,
    .panel-grid-content .panel-box:last-child {
        flex: 1;
        min-width: 100%;
    }

    .features-wrapper {
        height: auto;
    }

    .features-grid {
        animation: none; 
    }

    .features-grid .feature-card:nth-child(n+6) {
        display: none;
    }

    .contact-methods {
        gap: 20px;
    }

    .main-header {
        flex-direction: row; 
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap; 
        padding: 10px 0px 0px 10px;
    }

    .header-content {
        width: 100%;
        order: 1; 
    }

    .subtitle {
        margin: 15px 0 0 40px !important;
        text-align: justify;
        font-size: 16px;
    }

    .nav-links {
        width: 100%;
        order: 3;
        justify-content: center;
        margin-top: 10px;
    }

    .title-underline {
        width: 100%;
    }

    .app-logo {
        order: 2;
        height: 70px;
        margin: 0;
        padding-left: 5px;
    }
}

@media (max-width: 768px) {

    .primary-btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 14px 20px;
    }

    .panel-box {
        padding: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .contact-card {
        min-width: 90%;
    }

    .contact-text {
    max-width: 90%;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .app-logo {
        height: 50px;
    }

    .gradient-text {
        font-size: 1.6rem;
    }
    .subtitle {
        margin: 15px 0 0 45px !important;
        text-align: justify;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .main-header {
        padding: 10px 0px 0px 0px;
    }

    .gradient-text {
        font-size: 1.3rem;
        padding: 0px 0px 0px 10px;
    }
    .app-logo {
        height: 38px;
    }

    .subtitle {
        font-size: 14px;
        letter-spacing: 1px;

    }

    .panel-title {
        font-size: 1rem;
    }

    .nav-btn {
        padding: 10px 6px;
        font-size: 1rem;
    }
}