:root {
    --primary: #ef4444; /* Modern Crimson */
    --bg-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(239, 68, 68, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* MODERNIZED HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #1c1c1c(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--primary);
}

/* HERO SECTION - Now with a Gradient Glow */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-tagline {
    color: var(--primary);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* CARDS - Modern Grid & Glass */
.services {
    padding: 100px 8%;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ABOUT & CONTACT PAGES */
.page {
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass.contact-columns {
    margin: 0 auto;      /* centers horizontally */
    text-align: center;  /* centers text inside */
}

.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    max-width: 1000px; /* Wider for better reading */
    width: 90%;
}

.gender-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.contact-info h1 {
    color: #ef4444;          /* makes the heading red */
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 40px 0;
}

/* Center About Section */
.about-paragraph {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
}

/* Premium Heading */
.about-paragraph h1 {
    color: #ef4444;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Paragraph styling */
.about-paragraph p {
    font-size: 18px;
    line-height: 1.7;
    color: #e5e5e5;
    margin-top: 25px;
}

.contact-section h1 {
    text-align: center;
}


/* FOOTER */
footer {
    text-align: center;
    padding: 50px 0;
    opacity: 0.6;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000;
    transition: 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}


/* WHATSAPP */
.whatsapp-float {
    background: #25D366;
    transition: 0.4s;
}

/* Instagram Floating Button */
.instagram-float {
    position: fixed;
    bottom: 100px; /* sits above WhatsApp */
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000;
    transition: 0.3s ease;
}

/* Hover Effect */
.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.6);
}


/* Header Layout */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    color: black;
}

/* Logo Image */
.logo img {
    height: 45px;   /* Adjust size here */
    width: auto;
}

.service-block ul,
.gender-block ul {
    list-style: none;
    padding: 0;
}

.service-block li,
.gender-block li {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 3px solid #ef4444;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    transition: 0.3s ease;
}

.service-block li:hover,
.gender-block li:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: translateX(5px);
}

.about-images {
  display: flex;           /* place images side by side */
  justify-content: center; /* center the images */
  gap: 20px;               /* space between images */
  margin-top: 20px;        /* space below the paragraph */
  flex-wrap: wrap;         /* wrap on smaller screens */
}

.about-images img {
  width: 20%;            /* image size */
  height: auto;            /* keep proportions */
  border-radius: 10px;     /* optional rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* optional shadow */
}

.contact-detail a {
    color: #ef4444;           /* changes link color to red */
    text-decoration: none; /* optional: removes underline */
}

.contact-detail a:hover {
    text-decoration: underline; /* optional: underline on hover */
}

.trading-block li {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 3px solid #ef4444;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    transition: 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trading-block .day {
    text-align: left;
    font-weight: 500;
}

.trading-block .time {
    text-align: right;
    font-weight: 600;
}
