/* Base Styles */
:root {
  --navy-blue: #001f3f;
  --royal-blue: #0056b3;
  --sky-blue: #87CEEB;
  --light-blue: #E6F2FF;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --gold: #FFD700;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.ho-container {
  padding: 0 15px; 
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--navy-blue);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
:root {
  --navy-blue: #0a2a66;
  --royal-blue: #1a5fdf;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --header-height: 80px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*.main-header {*/
/*  width: 100%;*/
/*  background-color: var(--white);*/
/*  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
/*  position: sticky;*/
/*  top: 0;*/
/*  z-index: 1000;*/
/*}*/

/*.container {*/
/*  max-width: 1400px;*/
/*  margin: 0 auto;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  padding: 0 20px;*/
/*  height: var(--header-height);*/
/*}*/


 
/* Editor Desk Container */
.editor-desk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5%;
}

/* Hero Section */
.hero-section {
  margin-bottom: 60px;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-text {
  flex: 1;
  position: relative;
  padding-bottom: 30px;
}

.hero-title {
  font-size: 2.8rem;
  color: var(--navy-blue);
  margin-bottom: 25px;
  position: relative;
  line-height: 1.2;
}

.title-wave {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-blue), var(--royal-blue));
  border-radius: 2px;
}

.hero-image {
  width: 250px;
  height: 250px;
  position: relative;
  flex-shrink: 0;
}

.editor-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2);
}

.portrait-border {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border: 3px solid var(--royal-blue);
  border-radius: 15px;
  z-index: 1;
  opacity: 0.7;
}

/* Editor Message */
.editor-message {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
  padding: 40px;
  margin-bottom: 60px;
}

.message-content {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.greeting {
  font-size: 1.3rem;
  color: var(--royal-blue);
  margin-bottom: 25px;
  font-weight: 500;
}

.highlight {
  color: var(--navy-blue);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
}

.jai-hind {
  font-size: 1.5rem;
  color: var(--navy-blue);
  text-align: right;
  margin-top: 40px;
  font-weight: bold;
  font-style: italic;
}



/* Editor Message Card Styles */
.editor-message {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
  padding: 40px;
  margin-bottom: 60px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.editor-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--royal-blue) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.editor-message:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 31, 63, 0.2);
}

.editor-message:hover::before {
  opacity: 1;
}

.editor-message:hover .message-content,
.editor-message:hover .greeting,
.editor-message:hover .highlight,
.editor-message:hover .jai-hind,
.editor-message:hover .signature-name,
.editor-message:hover .signature-details p {
  color: var(--white);
}

.editor-message:hover .highlight::after {
  background-color: var(--gold);
}

.editor-message:hover .signature-line {
  background: linear-gradient(90deg, transparent, var(--white));
}

/* Signature Block Hover Effects */
.signature-block {
  transition: transform 0.3s ease;
}

.editor-message:hover .signature-block {
  transform: translateX(-10px);
}

/* Portrait Hover Effect */
.hero-image {
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: rotate(-2deg) scale(1.05);
}

.hero-image:hover .portrait-border {
  border-color: var(--gold);
  opacity: 1;
}


/* Signature Block */
.signature-block {
  margin-top: 50px;
  text-align: right;
}

.signature-line {
  display: inline-block;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--navy-blue));
  margin-bottom: 15px;
}

.signature-details {
  display: inline-block;
  text-align: left;
}

.signature-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-blue);
  margin-bottom: 5px;
}



/* Animations */
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideLeft 0.8s ease-out forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  animation: slideRight 0.8s ease-out forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.8s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


    /* Responsive Styles */
    @media (max-width: 1200px) {
      .editor-desk-container {
        padding: 40px 5%;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-image {
        width: 220px;
        height: 220px;
      }
      
      .editor-message {
        padding: 35px;
      }
    }

    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
      }
      
      .title-wave {
        width: 120px;
        bottom: 15px;
      }
      
      .hero-image {
        width: 200px;
        height: 200px;
      }
      
      .editor-message {
        padding: 30px;
        margin: 35px 0;
      }
      
      .greeting {
        font-size: 1.2rem;
      }
      
      .jai-hind {
        font-size: 1.3rem;
        margin-top: 25px;
      }
      
      .signature-block {
        margin-top: 35px;
      }
    }

    @media (max-width: 768px) {
      .editor-desk-container {
        padding: 35px 20px;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .message-content {
        font-size: 1.05rem;
        line-height: 1.7;
      }
      
      .editor-message {
        padding: 25px;
        margin: 30px 0;
      }
      
      .signature-line {
        width: 150px;
      }
      
      .signature-name {
        font-size: 1.2rem;
      }
      
      .jai-hind {
        margin-top: 20px;
      }
    }

    @media (max-width: 576px) {
      .editor-desk-container {
        padding: 30px 15px;
      }
      
      .hero-section {
        margin: 30px 0;
      }
      
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-image {
        width: 180px;
        height: 180px;
      }
      
      .portrait-border {
        top: -8px;
        right: -8px;
        bottom: -8px;
        left: -8px;
        border-width: 2px;
      }
      
      .editor-message {
        padding: 20px 15px;
        border-radius: 10px;
        margin: 25px 0;
      }
      
      .message-content {
        font-size: 1rem;
      }
      
      .greeting {
        font-size: 1.1rem;
        margin-bottom: 20px;
      }
      
      .jai-hind {
        font-size: 1.2rem;
        margin-top: 20px;
      }
      
      .signature-block {
        margin-top: 25px;
      }
      
      .signature-line {
        width: 120px;
      }
      
      .signature-name {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 400px) {
      .editor-desk-container {
        padding: 25px 10px;
      }
      
      .hero-title {
        font-size: 1.6rem;
      }
      
      .hero-image {
        width: 160px;
        height: 160px;
      }
      
      .title-wave {
        width: 100px;
        height: 3px;
      }
      
      .greeting {
        font-size: 1rem;
      }
      
      .jai-hind {
        font-size: 1.1rem;
      }
      
      .editor-message {
        margin: 20px 0;
      }
    }
