* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica', Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), 
                        url('MAG BG 2.png') no-repeat center center;
                         background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: white;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            padding: 2rem;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .logo-container {
            display: flex;
            margin-bottom: 3rem;
            align-items: center;
            justify-content: center;
          
        }

        .main-logo {
          
            width: 300px;
            height: auto;
            display: flex  ;
         
  
        }
         .main-logo img{
          
            width: 100%;
            
         
  
        }

        .main-logo:hover {
           
        }
        .main-logo span {
            
        }

        .company-name {
            font-size: 2.5rem;
          
            margin: 1rem 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .tagline {
            font-size: 2.2rem;
            font-weight: 100;
            margin-bottom: 4rem;
            ;
       
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .tagline strong {
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.8;
            font-weight: 100;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .subtitle span {
            font-weight: 700;
            font-size: 1.4rem;
        }

        .publications {
                display: flex
;
            justify-content: center;
            align-content: center;
            
        }

        .publication {
         
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

      

        
        .pub-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            font-size: 1.5rem;
      
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .islam-logo {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #333;
            border: 3px solid #ffd700;
        }

        .tribune-logo {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border: 3px solid rgba(255, 255, 255, 0.5);
        }

        .pub-title {
            font-size: 2.2rem;
           
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pub-description {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
        
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hide-on-small {
                display: none;
            }   

            .sm-flex {
               display: flex
;
    flex-wrap: wrap;
            }

.sm-text-small ,.publication p.sm-text-small{
    font-size: 0.7rem; /* 14px */
}

             .publications .publication img {
            max-width: 100%;
       
        }
            .hero-content {
                padding: 1rem;
                max-width: 100% ;
            }

            .main-logo {
                width: 200px;
                height: auto;
            }

            .main-logo span {
                font-size: 3rem;
            }

            .company-name {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1.4rem;
                margin-bottom: 2rem;
            }

            .subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .publications {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 2rem;
            }

            .publication {
                padding: 2rem 1.5rem;
            }

            .pub-title {
                font-size: 1.8rem;
            }

            .pub-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .publications {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .publication {
                min-width: auto;
                padding: 1.5rem 1rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .company-name {
                font-size: 1.8rem;
            }
        }

        /* Pulse animation for logo */
        /* @keyframes pulse {
            0% {
                box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
            }
            50% {
                box-shadow: 0 15px 35px rgba(255, 68, 68, 0.6);
            }
            100% {
                box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
            }
        } */
            .publication img {
            max-width: 240px;
       
        }
        .main-logo {
            /* animation: pulse 3s ease-in-out infinite; */
        }
        /* Custom Fonts */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica.woff') format('woff'),
         url('fonts/Helvetica.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-Bold.woff') format('woff'),
         url('fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-BoldOblique.woff') format('woff'),
         url('fonts/Helvetica-BoldOblique.ttf') format('truetype');
    font-weight: 700;
    font-style: oblique;
}
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-Oblique.woff') format('woff'),
         url('fonts/Helvetica-Oblique.ttf') format('truetype');
    font-weight: 400;
    font-style: oblique;
}
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/helvetica-light-587ebe5a59211.woff') format('woff'),
         url('fonts/helvetica-light-587ebe5a59211.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('fonts/helvetica-rounded-bold-5871d05ead8de.woff') format('woff'),
         url('fonts/helvetica-rounded-bold-5871d05ead8de.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
/* Example usage:
body {
    font-family: 'Helvetica', Arial, sans-serif;
}
*/
.text-center {
    text-align: center;
}
.publication p {
    font-size: 1rem;
    font-weight: 100;
}

.opacity-75 {
    opacity: 0.75;
}
