    :root{
      --primary:#0a66c2;
      --secondary:#28a745;
      --dark:#222;
      --light:#f9f9f9;
    }
    *{box-sizing:border-box;margin:0;padding:0;font-family:Arial, Helvetica, sans-serif;}
    body{background:var(--light);color:var(--dark);}

    /* HEADER */
    header{
      background:#fff;
      box-shadow:0 2px 6px rgba(0,0,0,0.1);
      position:sticky;top:0;z-index:1000;
    }
    .terms-box {
      border: 1px solid #ccc;
      height: 120px;
      overflow-y: scroll;
      padding-left: 20px;
      margin-bottom: 10px;
      font-size: 14px;
    }
    .container{max-width:1100px;margin:auto;padding:10px 15px;}
    .top{
      display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;
    }
    .logo{
      display:flex;align-items:center;gap:10px;
    }
    .logo img{
      height:55px; /* change size if needed */
    }
    .logo h1{
      font-size:20px;color:var(--primary);
    }
    .contact{
      font-size:14px;
    }
    .contact a{
      color:var(--secondary);text-decoration:none;font-weight:bold;
    }

    /* MENU */
    nav{background:var(--primary);}
    nav ul{list-style:none;display:flex;flex-wrap:wrap;}
    nav ul li{position:relative;}
    nav ul li a{
      display:block;padding:12px 15px;color:#fff;text-decoration:none;font-size:15px;
    }
    nav ul li a:hover{background:#084d99;}

    /* SUB MENU */
    nav ul li ul{
      display:none;position:absolute;top:100%;left:0;background:#084d99;min-width:200px;
    }
    nav ul li:hover ul{display:block;}
    nav ul li ul li a{padding:10px;font-size:14px;}

    /* MOBILE MENU */
    .menu-toggle{display:none;font-size:22px;color:#fff;padding:12px;cursor:pointer;}

    /* HERO */
    .hero{
      background:linear-gradient(to right,#0a66c2,#28a745);
      color:#fff;text-align:center;padding:50px 15px;
    }
    .hero h2{font-size:26px;margin-bottom:10px;}
    .hero p{font-size:16px;}

    /* SERVICES */
    .services{padding:40px 15px;}
    .services h2, h3{text-align:center;margin-bottom:25px;color:var(--primary);}
    .grid{
      display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;
    }
    .card{
      background:#fff;padding:20px;border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,0.1);
      text-align:center;
    }
    .card h4{margin-bottom:10px;color:var(--secondary);}

    /* FOOTER */
    footer{
      background:#111;color:#ccc;text-align:center;padding:20px;font-size:14px;
    }

    /* RESPONSIVE */
    @media(max-width:768px){
      nav ul{display:none;flex-direction:column;}
      nav ul.show{display:flex;}
      .menu-toggle{display:block;}
      nav ul li ul{position:static;}
    }

    /*flash Div settings*/
#flashDiv{
    position: fixed;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80%;
    max-width: 700px;
    min-width: 300px;

    padding: 20px 50px 20px 20px;
    box-sizing: border-box;

    border-radius: 12px;
    background: linear-gradient(90deg,#ff6b6b,#feca57,#48dbfb,#1dd1a1);
    background-size: 300% 300%;
    animation: gradientMove 5s ease infinite;

    color: white;
    font-size: 24px;
    font-family: Arial;
    font-weight: bold;
    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,.4);
    z-index: 99999;
}

#closeBtn{
    position:absolute;
    top:8px;
    right:12px;
    border:none;
    background:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

#timer{
    display:block;
    margin-top:10px;
    font-size:14px;
    font-weight:normal;
}

.blinkText{
    font-size: 20px;
    font-weight: bold;
    color: red;
    text-align: center;

    animation: blink 1s infinite;
}

@keyframes blink{
    0%   {opacity: 1;}
    50%  {opacity: 0;}
    100% {opacity: 1;}
}

/*Digital Marketing */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

/* body{
    background:#eef3f8;
}*/

/* Header */
.dm-header{
    background:linear-gradient(135deg,#0066cc,#00b894);
    color:white;
    text-align:center;
    padding:18px;
    font-size:28px;
    font-weight:bold;
    letter-spacing:1px;
}

/* Main Container */
.dm-container{
    display:flex;
    height:calc(100vh - 70px);
}

/* Left Menu */
.dm-leftPane{
    width:25%;
    overflow:hidden;
    transition:width .3s;
    background:#1f2937;
    border-right:3px solid #0ea5e9;
}

.dm-leftPane.hide{
    width:0;
    border-right:none;
}

.dm-leftPane ul{
    list-style:none;
}

.dm-leftPane li{
    padding:16px;
    color:white;
    border-bottom:1px solid rgba(255,255,255,.15);
    cursor:pointer;
    transition:.3s;
    font-size:17px;
}

.dm-leftPane li:hover,
.dm-leftPane li.active{
    background:#0ea5e9;
    padding-left:25px;
}

/* Right Content */
.dm-rightPane{
    width:calc(100% - 10px);
    padding:20px;
    overflow-y:auto;
    background:white;
}

.dm-content{
    display:none;
    animation:fadeIn .4s;
}

.dm-content.active{
    display:block;
}

.dm-card{
    background:#f8fbff;
    border-left:6px solid #0ea5e9;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.dm-card h2{
    color:#0f172a;
    margin-bottom:12px;
}

.dm-card p{
    line-height:1.7;
    color:#444;
}

.dm-services{
    margin-top:15px;
}

.dm-services li{
    margin-left:20px;
    margin-bottom:8px;
}

/* Mobile */
@media(max-width:768px){

    .dm-container{
        flex-direction:column;
        height:auto;
    }

    .dm-leftPane{
        width:100%;
        border-right:none;
        border-bottom:3px solid #0ea5e9;
    }

    .dm-leftPane ul{
        display:flex;
        overflow-x:auto;
        white-space:nowrap;
    }

    .dm-leftPane li{
        min-width:150px;
        text-align:center;
        border-right:1px solid rgba(255,255,255,.2);
        border-bottom:none;
    }

    .dm-rightPane{
        width:100%;
        min-height:400px;
    }
}

@keyframes dmfadeIn{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.dm-`menu{
    padding:16px;
    color:white;
    border-bottom:1px solid rgba(255,255,255,.15);
    cursor:pointer;
    transition:.3s;
    font-size:17px;
}

.dm-menu:hover,
.dm-menu.active{
    background:#0ea5e9;
    padding-left:25px;
}

#menuToggle{
    width:10px;
    background:#0ea5e9;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:bold;
    user-select:none;
    transition:.3s;
}

#dm-menuToggle:hover{
    background:#0284c7;
}

If you want a slightly wider clickable area:

#dm-menuToggle{
    width:16px;
}

/*Style class for Matrimony */

/* Religion Block */
.religionDiv{
    display:none;
    margin-top:20px;
    padding:15px;
    background:#f8f9fa;
    border:1px solid #dcdcdc;
    border-radius:8px;
}

/* Bride / Groom Block */
.genderDiv{
    display:none;
    margin-top:12px;
    padding:15px;
    background:#ffffff;
    border-left:5px solid #0ea5e9;
    border-radius:5px;
    box-shadow:0 2px 5px rgba(0,0,0,.08);
}

/* Section Title */
.sectionTitle{
    font-size:20px;
    font-weight:bold;
    color:#0f172a;
    margin-bottom:10px;
    border-bottom:2px solid #0ea5e9;
    padding-bottom:5px;
}

/* Optional: Labels */
.formLabel{
    display:block;
    margin-top:10px;
    margin-bottom:4px;
    font-weight:bold;
    color:#333;
}

/* Optional: Textboxes & Selects */
.formInput{
    width:100%;
    padding:8px;
    border:1px solid #ccc;
    border-radius:5px;
    box-sizing:border-box;
}

/*unordered list style*/
.ul-style{
    color: blue;
    text-align:
    left;
    font-weight: bold;
}

/*market Place */
.market-box{
    margin-top:15px;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
    transition:all .3s ease;
    animation:fadeIn .4s ease;
}

.market-box:hover{
    transform:translateY(-3px);
}

.buy-box{
    background:linear-gradient(135deg,#dbeafe,#eff6ff);
    border-left:6px solid #2563eb;
}

.sell-box{
    background:linear-gradient(135deg,#dcfce7,#f0fdf4);
    border-left:6px solid #16a34a;
}

.market-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#1e293b;
}

.market-content{
    font-size:15px;
    color:#475569;
    line-height:1.6;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

input[type="radio"]{
    accent-color:#0ea5e9;
    transform:scale(1.2);
    margin-right:6px;
}

label{
    font-size:16px;
    font-weight:600;
    margin-right:25px;
    cursor:pointer;
}

.item-display{
    width:100%;
    max-width:800px;

    aspect-ratio:16/9;

    display:flex;
    overflow:hidden;

    background:#fff;
    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);

    position:relative;

    transition:.3s;
}

.item-display:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 40px rgba(0,0,0,.18);
}

.item-badge{
    position:absolute;
    top:15px;
    left:15px;

    background:#ef4444;
    color:#fff;

    padding:8px 14px;
    border-radius:30px;

    font-size:13px;
    font-weight:600;

    z-index:10;
}

.item-image{
    flex:1;
}

.item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.item-details{
    flex:1;

    padding:25px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );
}

.item-details h2{
    margin:0 0 12px;
    color:#0f172a;
    font-size:26px;
}

.item-details p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:20px;
}

.item-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;

    margin-bottom:20px;

    color:#334155;
    font-weight:600;
}

.contact-btn{
    border:none;
    background:#0ea5e9;
    color:#fff;

    padding:12px 22px;
    border-radius:10px;

    cursor:pointer;
    font-size:15px;
    font-weight:600;

    width:max-content;

    transition:.3s;
}

.contact-btn:hover{
    background:#0284c7;
}

@media(max-width:768px){

    .item-display{
        flex-direction:column;
        aspect-ratio:auto;
    }

    .item-image{
        height:250px;
    }

    .item-details h2{
        font-size:22px;
    }
}

.wa-btn{
    display:inline-block;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-weight:bold;
}

.wa-btn:hover{
    background:#1ebe5d;
}

.about-section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.about-section h2{
    font-size:36px;
    margin-bottom:25px;
    color:#0f172a;
}

.about-section p{
    max-width:900px;
    margin:0 auto 20px;
    line-height:1.8;
    color:#475569;
    font-size:17px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.feature-box{
    background:#ffffff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.feature-box h3{
    margin-bottom:12px;
    color:#0284c7;
}

.feature-box p{
    font-size:15px;
    margin:0;
}

/*------- blinking Badge ------------*/
.new-badge{

    display:inline-block;

    margin-left:6px;

    padding:2px 6px;

    background:#ff0000;

    color:#fff;

    font-size:11px;

    font-weight:bold;

    border-radius:4px;

    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:0 0 5px red;
    }

    50%{
        box-shadow:0 0 15px red;
    }

    100%{
        box-shadow:0 0 5px red;
    }
}