    
      :root {
    --deep-green: #3A6E49;
    --light-sage: #B6D5B6;
    --fresh-green: #A2D9A1;
    --muted-blue: #78BFD4;
    --pale-blue: #E8F4F7;
    --soft-sage: #E8F0E7;
    --warm-ivory: #F7F8F3;
    --forest-charcoal: #2F4637;
    --border-divider: #D9E2D8;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--forest-charcoal);
    background: var(--warm-ivory);
    line-height: 1.6;
  }

  h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
  }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ===== COLOR VARIABLES ===== */


/* ===== HEADER STYLING ===== */
.site-header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border-divider);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(47, 70, 55, 0.04);
}

/* Navbar Container */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
}

.logo svg { 
  width: 32px; 
  height: 32px; 
  fill: var(--deep-green); 
}

.logo-text {
  font-size: 16px;
  line-height: 1.1;
  color: var(--forest-charcoal);
  font-family: "DM Serif Text", serif;
}

.logo-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--deep-green);
  margin-top: 2px;
}

/* Navigation Links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--deep-green);
}

/*.main-nav ul li a::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 0;*/
/*  height: 2px;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  background-color: var(--muted-blue);*/
/*  transition: width 0.3s ease;*/
/*}*/

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

/* Action Button */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--deep-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(58, 110, 73, 0.25);
}

.btn-primary:hover { 
  background: var(--forest-charcoal); 
  box-shadow: 0 6px 15px rgba(47, 70, 55, 0.3);
  transform: translateY(-1px);
}

/* Responsive Support */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .nav-container {
    padding: 14px 16px;
  }
}
 
 
 
 
 
 /* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: var(--white);
  padding: 80px 17%;
  background: linear-gradient(135deg, rgba(20, 30, 25, 0.8), rgba(47, 70, 55, 0.75)),
              url('https://images.unsplash.com/photo-1516979187457-637abb4f9353?w=1400') center/cover no-repeat;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  .hero {
    min-height: 650px;
    padding: 70px 7%;
    gap: 40px;
  }
}

/* Right Side Content */
.hero-content {
  flex: 1;
  min-width: 320px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182, 213, 182, 0.2);
  border: 1px solid var(--light-sage);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fresh-green);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content p {
  max-width: 540px;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: 10px;
}

/* Dual Buttons Styling */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--deep-green);
  color: var(--white);
  border: 2px solid var(--deep-green);
  box-shadow: 0 4px 15px rgba(58, 110, 73, 0.4);
}

.btn-primary:hover {
  background-color: #2f583b;
  border-color: #2f583b;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--forest-charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Left Side Form Wrapper */
.hero-form-wrapper {
  flex: 0 0 480px;
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: var(--forest-charcoal);
  text-align: left;
  z-index: 10;
}

.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--forest-charcoal);
}

.form-header p {
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
}

/* Form Inputs & Icons */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 15px;
  color: var(--deep-green);
  font-size: 14px;
}

.textarea-group i {
  top: 15px; /* Textarea ke liye icon ko upar set kiya hai */
}

.input-group input, 
.input-group select,
.input-group textarea {
  width: 100%;
  border: 1px solid var(--border-divider);
  background: var(--warm-ivory);
  border-radius: 8px;
  outline: none;
  padding: 12px 14px 12px 42px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--forest-charcoal);
  transition: all 0.3s ease;
}

.input-group textarea {
  resize: none;
  height: 75px;
}

.input-group input:focus, 
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--deep-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(58, 110, 73, 0.12);
}

.hero-form .btn-primary {
  width: 100%;
  margin-top: 5px;
  padding: 13px;
}

/* Responsive Design for Mobile & Tablets */
@media (max-width: 960px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 50px 20px;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-form-wrapper {
    width: 100%;
    max-width: 450px;
  }
}
  /* ===== SECTION HEADERS ===== */
  .section {
    padding: 80px 0;
  }

  .section-label {
      text-align: center;
    font-size: 16px;
    letter-spacing: 1.1px;
    /* text-transform: uppercase; */
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
  }

  .section-title {
       text-align: center;
    font-size: 38px;
    color: var(--deep-green);
    font-weight: 600;
    /* max-width: 700px; */
    margin: 0 auto 50px;
  }

  
 

  
  

  
 
 /* ===== PORTFOLIO SECTION ===== */
.port-section {
  background-color: #F7F8F3;
  padding: 90px 0;
}

.port-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.port-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.port-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  letter-spacing: 2px;
  color: #1f241c;
  margin-bottom: 10px;
    font-family: 'Playfair Display', serif;

}

.port-title-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f241c;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.port-desc {
  color: #667;
  font-size: 1rem;
  line-height: 1.6;
      margin-top: -25px;

}

/* Portfolio Tabs */
.port-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.port-tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background-color: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  color: #1f241c;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.port-tab-btn:hover, 
.port-tab-btn.active {
  background-color: #1f241c;
  color: #ffffff;
  border-color: #1f241c;
  box-shadow: 0 4px 12px rgba(31, 36, 28, 0.3);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.port-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1f241c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  aspect-ratio: 3/4.2;
}

.port-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.port-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(31,36,28,0.95) 0%, rgba(31,36,28,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.port-item:hover img {
  transform: scale(1.08);
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-title {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 0 0 5px 0;
  font-family: 'Playfair Display', serif;
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.port-category {
  color: #d4d8b4;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: transform 0.3s ease 0.05s;
}

.port-item:hover .port-title,
.port-item:hover .port-category {
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .port-grid {
    grid-template-columns: 1fr;
  }
  .port-section {
    padding: 60px 0;
  }
}
 
 /* ===== FAQ SECTION ===== */
.port-faq-section {
  background: #E8F0E7;
  padding: 90px 0;
}

.port-faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.port-faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.port-faq-question {
  width: 100%;
  padding: 20px 25px;
  border: 0;
  outline: 0;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  cursor: pointer;
  text-align: left;

  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f241c;
}

.port-faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;

  transition: transform .3s ease;
}

.port-faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows .35s ease;
}

.port-faq-answer > p {
  min-height: 0;
  overflow: hidden;

  margin: 0;
  padding: 0 25px;

  color: #4a4e45;
  font-size: .95rem;
  line-height: 1.6;

  transition: padding .35s ease;
}

.port-faq-item.active .port-faq-answer {
  grid-template-rows: 1fr;
}

.port-faq-item.active .port-faq-answer > p {
  padding: 0 25px 22px;
}

.port-faq-item.active .port-faq-icon {
  transform: rotate(45deg);
}

/*//footerform*/

/* ===== FOOTER FORM SECTION ===== */
.port-footer-form-section {
  background-color: #F7F8F3;
  padding: 100px 0;
  border-top: 1px solid var(--border-divider, #D9E2D8);
}

.port-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
      background: #D9E2D8;
    padding: 30px;
    border-radius: 20px;

}

.port-footer-info .port-title-heading {
  color: var(--deep-green);
  font-size: 2.3rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.port-footer-info .port-label {
  color: #000;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.port-footer-info .port-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
margin-top: 3px;

}

.port-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-contact-item {
  color: var(--forest-charcoal, #2F4637);
  font-size: 0.95rem;
}

.port-contact-item strong {
  color: var(--deep-green, #3A6E49);
}

/* Form Box Wrapper */
.port-form-wrapper {
  background-color: var(--white, #FFFFFF);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(47, 70, 55, 0.08);
  border: 1px solid var(--border-divider, #D9E2D8);
}

.port-footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-form-group {
  width: 100%;
}

/* Input Wrapper for Icons Alignment */
.port-input-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.port-input-icon {
  position: absolute;
  left: 16px;
  color: var(--deep-green, #3A6E49);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.textarea-wrap {
  align-items: flex-start;
}

.textarea-icon {
  top: 16px;
}

/* Form Inputs Styling */
.port-input {
  width: 100%;
  padding: 8px 18px 8px 48px; /* Left padding space for icon */
  border: 1.5px solid var(--border-divider, #D9E2D8);
  border-radius: 10px;
  background-color: var(--warm-ivory, #F7F8F3);
  color: var(--forest-charcoal, #2F4637);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.port-input:focus {
  border-color: var(--deep-green, #3A6E49);
  background-color: var(--white, #FFFFFF);
  box-shadow: 0 0 0 4px rgba(58, 110, 73, 0.12);
}

.port-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233A6E49' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.port-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
}

/* Submit Button */
.port-submit-btn {
  background-color: var(--deep-green, #3A6E49);
  color: var(--white, #FFFFFF);
  border: none;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  margin-top: 5px;
}

.port-submit-btn:hover {
  background-color: var(--forest-charcoal, #2F4637);
  box-shadow: 0 8px 20px rgba(47, 70, 55, 0.2);
}

/* Responsive Queries */
@media (max-width: 992px) {
  .port-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
 
 
 
 
 
 /*footer*/
 
 /* ===== FOOTER SECTION ===== */
.port-footer {
  background-color: var(--forest-charcoal, #2F4637);
  color: var(--warm-ivory, #F7F8F3);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.port-footer-grid-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.port-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white, #FFFFFF);
  margin-bottom: 15px;
}

.port-footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c2cdc5;
  margin-bottom: 20px;
}

.port-social-links {
  display: flex;
  gap: 12px;
}

.port-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white, #FFFFFF);
  transition: all 0.3s ease;
}

.port-social-icon:hover {
  background-color: var(--deep-green, #3A6E49);
  transform: translateY(-3px);
}

.port-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white, #FFFFFF);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.port-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--fresh-green, #A2D9A1);
}

.port-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-footer-links a {
  color: #c2cdc5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.port-footer-links a:hover {
  color: var(--fresh-green, #A2D9A1);
  padding-left: 5px;
}

.port-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: #c2cdc5;
}

.port-footer-contact-info strong {
  color: var(--white, #FFFFFF);
}

/* Footer Bottom Bar */
.port-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #a8b8ae;
}

.port-footer-bottom p {
  margin: 0;
}

.port-footer-legal {
  display: flex;
  gap: 20px;
}

.port-footer-legal a {
  color: #a8b8ae;
  text-decoration: none;
  transition: color 0.3s ease;
}

.port-footer-legal a:hover {
  color: var(--white, #FFFFFF);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .port-footer-grid-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 576px) {
  .port-footer-grid-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .port-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}



/* ===== MINIMAL STATS SECTION ===== */
.port-stats-minimal {
  background-color: var(--warm-ivory, #F7F8F3);
  padding: 60px 0;
  border-top: 1px solid var(--border-divider, #D9E2D8);
  border-bottom: 1px solid var(--border-divider, #D9E2D8);
}

.port-stats-row {
  display: flex;
  justify-align: space-between;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.port-stat-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.port-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--deep-green, #3A6E49);
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}

.port-stat-text {
  font-size: 0.9rem;
  color: var(--forest-charcoal, #2F4637);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Elegant vertical divider lines between stats */
.port-stat-divider {
  width: 1px;
  height: 50px;
  background-color: var(--border-divider, #D9E2D8);
}

/* Responsive design for tablets and phones */
@media (max-width: 992px) {
  .port-stat-divider {
    display: none; /* Hide dividers on smaller screens */
  }
  .port-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .port-stats-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



/*//////Floting icons*/

    /* Floating Social Icons Base Styling (Desktop) */
    .floating-social-icons {
        position: fixed;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 99999;
    }

    /* White rounded card styling matching screenshot */
    .social-float {
        width: 45px;
        height: 45px;
        background-color: #ffffff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Icon Golden Color matching Pioneer Publishing Press Theme */
    .social-float i {
        color: #3a6e49;
        font-size: 20px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    /* Hover effect */
    .social-float:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(201, 165, 49, 0.25);
        background-color: #2F583B;
    }

    .social-float:hover i {
        color: #fbf6e9;
    }

    /* Mobile Responsive Logic */
    @media (max-width: 768px) {
        .floating-social-icons {
            position: fixed !important;
            left: -65px !important; /* Fully hidden off-screen initially */
            top: 50% !important;
            transform: translateY(-50%) !important;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            padding: 8px 0 8px 8px;
        }

        /* Slide Out when Active */
        .floating-social-icons.active {
            left: 10px !important;
        }

        /* Toggle Button styling attached to side */
        .social-toggle {
            position: absolute !important;
            right: -28px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            width: 28px !important;
            height: 48px !important;
            background-color: #1f241c !important;
            border: none !important;
            color: #ffffff !important;
            border-radius: 0 10px 10px 0 !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-shadow: 3px 0 8px rgba(0,0,0,0.15) !important;
            outline: none;
        }

        .social-toggle .toggle-icon {
            transition: transform 0.3s ease !important;
            font-size: 13px !important;
            font-weight: bold !important;
            display: inline-block !important;
        }

        .floating-social-icons.active .toggle-icon {
            transform: rotate(180deg) !important;
        }
    }

    @media (min-width: 769px) {
        .social-toggle {
            display: none !important;
        }
    }



/* Popup Overlay Background */
.port-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 70, 55, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup Main Box */
.port-popup-container {
  display: flex;
  background: var(--warm-ivory);
  width: 100%;
  max-width: 850px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(47, 70, 55, 0.25);
  position: relative;
  border: 1px solid var(--border-divider);
}

/* Close Button */
.port-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--forest-charcoal);
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.port-popup-close:hover {
  color: var(--deep-green);
}

/* Left Sidebar */
.port-popup-sidebar {
  width: 38%;
  background: var(--soft-sage);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border-divider);
}

.port-consultant-card {
  margin-bottom: 20px;
}
.port-consultant-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--deep-green);
  margin-bottom: 8px;
  margin-left: 17px;
}
.port-consultant-name {
  font-family: "DM Serif Text", serif;
  font-size: 16px;
  color: var(--forest-charcoal);
  margin: 0;
}
.port-consultant-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--deep-green);
}

.port-brand-logo-area {
  margin-bottom: 20px;
}
.port-sidebar-logo-text {
  font-family: "DM Serif Text", serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--forest-charcoal);
  line-height: 1;
}
.port-sidebar-tagline {
  font-size: 7px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--deep-green);
}

.port-sidebar-quote {
  font-size: 11px;
  line-height: 1.5;
  color: var(--forest-charcoal);
  font-style: italic;
  opacity: 0.85;
  margin-top: 100px;
}

/* Right Form Content */
.port-popup-form-content {
  width: 62%;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
}

.port-popup-header h2 {
  font-family: "DM Serif Text", serif;
  font-size: 20px;
  color: var(--forest-charcoal);
  margin-bottom: 4px;
}
.port-popup-header p {
  font-size: 12px;
  color: var(--forest-charcoal);
  opacity: 0.8;
  margin-bottom: 16px;
}

/* Form Elements Custom Styling */
.port-form-group {
  /*margin-bottom: 12px;*/
}
.port-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.port-input-icon {
  position: absolute;
  left: 12px;
  color: var(--deep-green);
  font-size: 13px;
}


/* Submit Button */
.port-submit-btn {
  width: 100%;
  padding: 11px;
  background: var(--deep-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.port-submit-btn:hover {
  background: var(--forest-charcoal);
}

/* Responsive Mobile Support */
@media (max-width: 768px) {
  .port-popup-container {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  .port-popup-sidebar, .port-popup-form-content {
    width: 100%;
  }
  .port-popup-sidebar {
    padding: 20px;
  }
}



/*side drawer*/


 /* --- FIXED SIDE CTA & DRAWER --- */
    .fixed-side-cta {
        position: fixed;
        right: -85px;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        z-index: 990;
        background-color: #3A6E49;
        color: var(--white);
        padding: 12px 26px;
        border-radius: 12px 12px 0 0;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: var(--transition-normal);
    }

    .fixed-side-cta:hover {
        background-color: var(--white);
        padding-bottom: 16px;
        color: var(--olive-dark);
    }

    .drawer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(31, 36, 28, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .drawer-overlay.active {
        /*opacity: 1;*/
        visibility: visible;
    }

    .side-drawer {
        position: fixed;
        top: 215px;
        right: -450px;
        width: 100%;
        max-width: 440px;
        height: 55%;
        border-radius: 17px;
        background-color: #fff;
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        padding: 15px 30px;
        overflow-y: auto;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
    }

    .side-drawer.active {
        right: 0;
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: -6px;
    }

    .drawer-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-dark);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-fast);
    }

    .drawer-close:hover {
        background-color: rgba(0,0,0,0.05);
        transform: rotate(90deg);
    }
    
        
    /* ===== DROPDOWN STYLING ===== */
    .main-nav ul li.dropdown {
      position: relative;
    }
    
    /* Dropdown Container */
    .main-nav ul li.dropdown .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      box-shadow: 0 10px 25px rgba(47, 70, 55, 0.12);
      border: 1px solid var(--border-divider);
      border-radius: 8px;
      list-style: none;
      padding: 8px 0;
      margin: 0;
      width: 220px;
      display: none;
      z-index: 1001;
    }
    
    /* Show on Hover */
    .main-nav ul li.dropdown:hover .dropdown-menu {
      display: block;
    }
    
    /* Dropdown List Items */
    .main-nav ul li.dropdown .dropdown-menu li {
      width: 100%;
      display: block;
    }
    
    .main-nav ul li.dropdown .dropdown-menu li a {
      padding: 10px 18px;
      display: block;
      font-size: 14px;
      color: var(--forest-charcoal);
      font-weight: 400;
      transition: all 0.2s ease;
      border-bottom: none;
    }
    
    /* Remove main bottom underline effect from dropdown items */
    .main-nav ul li.dropdown .dropdown-menu li a::after {
      display: none;
    }
    
    /* Dropdown Hover Effect */
    .main-nav ul li.dropdown .dropdown-menu li a:hover {
      background: var(--soft-sage);
      color: var(--deep-green);
      padding-left: 22px; /* Chota sa slide effect hover par */
    }  
    
    
    