

         section {           
            /*padding-top: 2rem;*/
            /*padding-bottom: 5rem;*/
            padding-bottom: 0rem;
            padding-left: 0;
            padding-right: 0;
        }
         section {
            padding: 5rem 0;
        }
  

       /***** Logo Start *****/
        .logo {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.5;
        }

        .logo-text h1 {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 0.5px #974ee0;
        }

        .logo-text p {
            font-size: 13px;
            font-weight: 500;
            margin: 0;
            margin-top: -4px;
            text-align: right;
            background: var(--gradient-elegant-red);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    /* 📱 Tablet */
    @media (max-width: 992px) {
        .logo img {
            height: 40px;
        }

        .logo-text h1 {
            font-size: 1.4rem;
        }

        .logo-text p {
            font-size: 12px;
        }
    }

    /* 📱 Mobile */
    @media (max-width: 768px) {

        .logo {
            gap: 8px;
        }

        .logo img {
            height: 34px;
        }

        .logo-text h1 {
            font-size: 1.1rem;
            -webkit-text-stroke: 0.3px #974ee0;
        }

        .logo-text p {
            font-size: 10px;
            margin-top: -2px;
            text-align: left; /* better for mobile */
        }
        }

        /* 📱 Small Mobile */
        @media (max-width: 480px) {

            .logo img {
                height: 30px;
            }

            .logo-text h1 {
                font-size: 0.95rem;
                letter-spacing: 0.5px;
            }

            .logo-text p {
                font-size: 9px;
            }
        }

        /* 📱 Very small devices (optional but useful) */
        @media (max-width: 360px) {

            .logo-text p {
                /*display: none; */ /* hide subtitle if space is too tight */
                font-size: 10px;
                text-align: left;
            }
        }
                
 /***** Logo End **** *****/

            .shadow1{
                text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
            }
            

            .call-btn{
            display:inline-flex;
            align-items:center;
            gap:2px;
            padding:8px 16px;
            font-family:'Segoe UI','Roboto','Helvetica Neue','Arial',sans-serif;
            border:1px solid rgba(15,15,15,0.2);
            color:var(--text-light);
            font-weight:600;
            font-size:14px;
            text-decoration:none;
            margin-right:30px;
            margin-top:14px;
            text-transform:uppercase;
            background:var(--gradient-blue);
            border-radius:7px;
            letter-spacing:1px;
            backdrop-filter:blur(10px);
            transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
        }

        /* Hover effect */
        .call-btn:hover{
            transform:translateY(-2px);
            background:linear-gradient(135deg,#2563eb,#1d4ed8);
            border-color:rgba(0,0,0,0.25);
            box-shadow:0 6px 18px rgba(37,99,235,0.35);
            color:#fff;
        }

        /* Click effect */
        .call-btn:active{
            transform:translateY(0);
            box-shadow:0 3px 10px rgba(0,0,0,0.2);
        }


        /***** Logo Start **** *****/
        
         .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

     
/*******************************************************************************/
.section-title{    
    color: var(--text-blue);
}
.section-subtitle{    
    color: var(--text-secondary);
}
.section-subtitle{    
    color: var(--text-secondary2);
}


/********************* Text Design ***********/
.white-text-1 {
    font-size: clamp(22px, 4vw, 40px); /* 🔥 responsive size */
    font-weight: 800;

    background: linear-gradient(45deg, #ffffff, #f8f9fa, #e9ecef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* 🔥 ADD THESE FIXES */
    display: block;
    line-height: 1.2;
    max-width: 100%;
    word-break: break-word;
}
.white-text-2 {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #fdfdfd, #f1f1f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.3);
}
/*********************************************/
