/* Stylish scrollbar for CEO modal content (Webkit browsers) */
.ceo-msg-modal-content::-webkit-scrollbar {
  width: 8px;
  background: #e3f2fd;
  border-radius: 8px;
}
.ceo-msg-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1976d2 40%, #42a5f5 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.ceo-msg-modal-content {
  scrollbar-width: thin;
  scrollbar-color: #42a5f5 #e3f2fd;
}

/* Stylish close button for CEO modal */
.ceo-msg-close {
  background: linear-gradient(135deg, #1976d2 60%, #42a5f5 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  outline: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10001;
}
.ceo-msg-close:hover, .ceo-msg-close:focus {
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
  color: #fff;
  transform: scale(1.12) rotate(90deg);
  box-shadow: 0 4px 16px rgba(30,136,229,0.18);
}
@media (max-width: 600px) {
  .ceo-msg-content-col {
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
    padding: 12px 8px 16px 8px;
    margin-bottom: 12px;
    overflow-y: auto;
    font-size: 1em;
    word-break: break-word;
  }
  .ceo-msg-modal-content {
    flex-direction: column;
    align-items: stretch;
    max-height: 90vh;
    overflow-y: auto;
  }
}
/* --- Sidebar Alignment & Behavior Fix --- */
.sidebar-new {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 100vw;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
}
.sidebar-new.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Overlay (fixed and interactive only when active) */
.sidebar-new-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 136, 229, 0.18);
  z-index: 9999;
  display: none;
}
.sidebar-new.active ~ .sidebar-new-overlay {
  display: block;
}

/* Sidebar Links */
.sidebar-new-links {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 32px;
}
.sidebar-link {
  color: #1976d2;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px 18px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.sidebar-link:hover {
  background: #e3f2fd;
  color: #0d47a1;
}

/* Open Button */
.sidebar-new-open {
  position: fixed;
  top: 24px;
  right: 36px;
  z-index: 11000;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.1);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.sidebar-new.active ~ .sidebar-

/* CEO Message Modal */
.ceo-msg-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: rgba(25, 118, 210, 0.85);
    border: none;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.ceo-msg-close:hover {
    background: #1565c0;
    color: #fff;
    transform: scale(1.08) rotate(90deg);
}
.ceo-msg-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1976d2ee;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}
.ceo-msg-modal.active {
  display: flex;
}
.ceo-msg-modal-content {
  background: transparent;
  border-radius: 18px;
  padding: 0;
  box-shadow: none;
  max-width: 700px;
  width: 96vw;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
}
.ceo-msg-img-col {
  padding: 24px 0 0 0;
  width: 100%;
  min-width: 0;
  max-width: 32%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40%;
}
.ceo-msg-img-col img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(30,136,229,0.18), 0 2px 12px 0 rgba(0,0,0,0.10);
  border: 4px solid #fff;
  background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
}
.ceo-msg-content-col {
  flex: 1;
  background: transparent;
  width: 100%;
  padding: 14px 10px 19px 10px;
  margin-bottom: 19px;
  text-align: left;
  color: #fff !important;
  font-size: 0.8em;
}
.ceo-msg-main {
  color: #fff !important;
  font-size: 0.8em;
}
.ceo-msg-signature-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 0.8em;
}
.ceo-msg-signature {
  width: 80px;
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px #0002);
}
.ceo-msg-name {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.ceo-msg-title {
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
}
.ceo-msg-logos {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.ceo-msg-logo-small {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0 !important;
  background: none;
  border: none;
  color: #1976d2;
  font-size: 1.6rem;
  margin: 14px 14px 0 0;
  cursor: pointer;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
}
.sidebar-tip-text {
    background: #fffbe7;
    color: #b28704;
    font-size: 1rem;
    padding: 7px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 215, 64, 0.10);
    margin-bottom: 2px;
    font-weight: 500;
}
.sidebar-tip-icon {
    font-size: 1.2em;
    margin-right: 7px;
}
/* Right Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    overflow: hidden;
    transition: width 0.35s cubic-bezier(.4,2,.6,1);
    pointer-events: none;
}
.sidebar.active {
    width: 50vw;
    min-width: 260px;
    max-width: 420px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(30,136,229,0.10);
    pointer-events: all;
        max-width: 180px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 32px;
        box-shadow: 0 8px 32px 0 rgba(30,136,229,0.18), 0 2px 12px 0 rgba(0,0,0,0.10);
        border: 4px solid #fff;
        background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 2;
}
.sidebar-logo-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}
.sidebar-logo-bg-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.sidebar-ceo-voice {
    margin-top: 32px;
    width: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 16px 12px 12px 12px;
    box-shadow: 0 2px 8px rgba(30,136,229,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ceo-voice-title {
    font-weight: 600;
    color: #1976d2;
    font-size: 1.08rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-open-top-btn {
    position: fixed;
    top: 12px;
    right: 56vw;
    z-index: 10000;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(30,136,229,0.10);
    cursor: pointer;
    display: none;
}
@media (min-width: 900px) {
    .sidebar-open-top-btn {
        display: block;
    }
}
.sidebar-gplogo-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
}
.sidebar-links {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
    width: 100%;
}
.sidebar-link {
    color: #1976d2;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px 18px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-link:hover {
    background: #e3f2fd;
    color: #0d47a1;
}
.sidebar-dropdown {
    width: 100%;
}
.sidebar-dropdown-btn {
    width: 100%;
    background: #f5f5f5;
    color: #1976d2;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.sidebar-dropdown-btn:hover {
    background: #e3f2fd;
    color: #0d47a1;
}
.sidebar-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px 0 8px 12px;
    box-shadow: 0 2px 8px rgba(30,136,229,0.06);
}
.sidebar-dropdown-content.show {
    display: flex;
}
.sidebar-close-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    background: none;
    border: none;
    color: #1976d2;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}
.sidebar-overlay {
    display: none;
}
.sidebar.active + .sidebar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,136,229,0.18);
    z-index: 9998;
}
    /* Removed orphaned property and fixed .sidebar-logo-bg selector */
    .sidebar-logo-bg {
        width: 120px;
        height: 120px;
        top: 18px;
        right: 18px;
    }
@media (max-width: 700px) {
    .logo-circle {
        background: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo-circle img.gplogo-img {
        width: 36px;
        height: 36px;
        border-radius: 0 !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    header {
        padding: 10px 0;
        min-height: unset;
    }
    .container {
        padding: 0 6px;
    }
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .logo-container {
        background: var(--primary-blue);
        border-radius: 18px;
        padding: 10px 12px;
        min-width: 0;
        max-width: 100vw;
        width: 100vw;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
        position: relative;
        z-index: 2;
    }
    .logo-title, .logo-subtitle {
        color: var(--white) !important;
    }
    .logo-title-group {
        margin-left: 10px;
    }
    .header-banner-wrapper, .header-animated-bg, .header-animated-bg-left {
        display: none !important;
    }
    .header-right {
        width: 100%;
        justify-content: flex-end;
        gap: 10px;
    }
    .logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .logo-circle img.gplogo-img {
    width: 36px;
    height: 36px;
    border-radius: 0;
    }
    .logo-title {
        font-size: 1.1rem;
    }
    /* The following properties are not inside any selector, so remove them */
    .sidebar-content, .sidebar-header, .sidebar-text {
        display: none !important;
    }
    .main-content, main {
        margin-left: 0 !important;
        padding: 8px 2px 0 2px !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    .card, .about-card, .branch-card, .service-card, .extra-link {
        padding: 12px 8px;
        margin-bottom: 14px;
        border-radius: 10px;
        font-size: 0.98rem;
    }
    .branches-cards, .services-cards, .extra-links {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .branch-img {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    .service-card, .extra-link {
        min-width: 0;
        max-width: 100vw;
        font-size: 0.98rem;
        padding: 12px 8px;
    }
    .main-footer, footer {
        font-size: 0.9rem;
        padding: 12px 0 8px 0;
    }
}
.header-animated-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100px;
    max-width: 340px;
    min-width: 120px;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
    background: radial-gradient(circle at 30% 40%, var(--primary-blue) 60%, var(--secondary-blue) 100%);
    border-radius: 0 80px 0 0/0 100px 0 0;
    animation: blobMoveLeft 7s ease-in-out infinite alternate;
}
@keyframes blobMoveLeft {
    0% { border-radius: 0 80px 0 0/0 100px 0 0; transform: scaleX(1) scaleY(1); }
    50% { border-radius: 0 120px 0 0/0 140px 0 0; transform: scaleX(1.04) scaleY(1.08) translateY(-6px); }
    100% { border-radius: 0 80px 0 0/0 100px 0 0; transform: scaleX(1) scaleY(1); }
}
.header-animated-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100px;
    max-width: 340px;
    min-width: 180px;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
    background: radial-gradient(circle at 70% 40%, var(--primary-blue) 60%, var(--secondary-blue) 100%);
    border-radius: 0 0 0 80px/0 0 0 100px;
    animation: blobMove 6s ease-in-out infinite alternate;
}
@keyframes blobMove {
    0% { border-radius: 0 0 0 80px/0 0 0 100px; transform: scaleX(1) scaleY(1); }
    50% { border-radius: 0 0 0 120px/0 0 0 140px; transform: scaleX(1.08) scaleY(1.04) translateY(-8px); }
    100% { border-radius: 0 0 0 80px/0 0 0 100px; transform: scaleX(1) scaleY(1); }
}
.header-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    min-width: 260px;
    max-width: 600px;
    height: 100px;
}
@media (max-width: 900px) {
    .header-banner-wrapper {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        height: 70px;
    }
    .header-animated-bg {
        height: 70px;
    }
}
.header-banner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    min-width: 260px;
    max-width: 600px;
    height: 100px;
}
.header-banner-img {
    position: absolute;
    right: 10;
    top: 0;
    width: 100%;
    height: 100px;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
    border-radius: 0 0 0 0px;
}
.header-banner-wrapper .header-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: flex-end;
}
@media (max-width: 900px) {
    .header-banner-wrapper {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        height: 70px;
    }
    .header-banner-img {
        height: 70px;
    }
}
.logo-title-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 18px;
}
.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.logo-subtitle {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 400;
    opacity: 0.95;
}
/* Preety Linktree CSS */
       
        :root {
            --primary-blue: #1e88e5;
            --secondary-blue: #42a5f5;
            --light-blue: #bbdefb;
            --accent-blue: #0d47a1;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
            --shadow: 0 4px 15px rgba(30, 136, 229, 0.2);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 60px 0;
        }

        /* Header Styles */
        header {
    /* Left half blue, right half image with gradient overlay */
    background:
        /* left half blue */
        linear-gradient(to right, var(--primary-blue) 50%, transparent 50%),
        
        /* background image */
        url('branch/header.jpg');

    /* make sure each layer behaves properly */
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 100% 100%, 50% 100%, 50% 100%;
    background-position: left top, right top, right top;

    color: var(--white);
    padding: 20px 0;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

        .logo-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        .logo-circle {
            width: auto;
            height: auto;
            background: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .logo-circle:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .logo-circle i {
            font-size: 40px;
            color: var(--primary-blue);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-btn {
            background: transparent;
            border: 1px solid var(--white);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }

        .dropdown-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background-color: var(--white);
            min-width: 200px;
            box-shadow: var(--shadow);
            border-radius: 4px;
            z-index: 100;
            overflow: hidden;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-content a {
            color: var(--dark-gray);
            padding: 12px 16px;
            display: block;
            transition: var(--transition);
        }

        .dropdown-content a:hover {
            background-color: var(--light-blue);
            padding-left: 20px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .email-link {
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .email-link:hover {
            color: var(--light-blue);
            transform: translateY(-2px);
        }

        .hamburger {
            display: block;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            background: none;
            border: none;
            z-index: 20;
        }

        .hamburger:hover {
            color: var(--light-blue);
            transform: scale(1.1);
        }

        /* Sidebar Styles */
        /* Sidebar Styles */
.sidebar {
      position: fixed;
      top: 0;
      left: -50%; /* start hidden */
      width: 50%; /* half page */
      height: 100%;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
      color: var(--white);
      z-index: 1000;
      transition: left 0.3s ease;
      overflow-y: auto;
    }

    .sidebar.active {
      left: 0;
    }

    .sidebar-content {
      padding: 60px 40px;
    }

    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .sidebar-title {
      font-size: 28px;
      color: var(--light-blue);
      text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

        
    .close-btn {
      font-size: 24px;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--white);
    }

        .close-btn:hover {
            color: var(--light-blue);
            transform: rotate(90deg);
        }

        .sidebar-text {
            font-size: 18px;
            line-height: 1.8;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            display: none;
            backdrop-filter: blur(5px);
        }
        .backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 900;
      display: none;
    }
    .backdrop.active {
      display: block;
    }

    /* Mobile: full screen */
    @media (max-width: 768px) {
      .sidebar {
        width: 100%;
        left: -100%;
      }
    }

        .overlay.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Social Buttons Section */
        .social-section {
            text-align: center;
            padding: 40px 0;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .social-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Branch Cards Section */
        .branch-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .branch-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .branch-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .branch-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .branch-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            cursor: pointer;
        }

        .branch-image img:hover {
            box-shadow: 0 4px 24px rgba(30,136,229,0.18);
        }

        .branch-card:hover .branch-image img {
            transform: scale(1.1);
        }

        .branch-info {
            padding: 20px;
        }

        .branch-tabs {
            display: flex;
            border-bottom: 1px solid var(--light-blue);
            margin-bottom: 15px;
        }

        .branch-tab {
            padding: 10px 15px;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }

        .branch-tab.active {
            border-bottom: 3px solid var(--primary-blue);
            color: var(--primary-blue);
            font-weight: 600;
        }

        .branch-tab:hover {
            background-color: var(--light-blue);
        }

        .tab-content {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tab-content.active {
            display: block;
        }

        .branch-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .branch-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-blue);
            transition: var(--transition);
            padding: 10px;
            border-radius: 8px;
        }

        .branch-link:hover {
            background-color: var(--light-blue);
            transform: translateX(5px);
        }

        .branch-link i {
            font-size: 20px;
            width: 24px;
            text-align: center;
        }

        /* Video Section */
        .video-section {
            background-color: var(--white);
            padding: 60px 0;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }

        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .video-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .video-card iframe {
            width: 100%;
            height: 200px;
            border: none;
        }

        .video-info {
            padding: 15px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: var(--white);
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%; /* Cover half of the footer */
            height: 100%;
            background-image: url('branch/banner.jpeg');
            background-size: cover;
            background-position: center;
            opacity: 0.5; /* Semi-transparent */
            z-index: 1;
        }

        footer .container {
            position: relative;
            z-index: 2; /* Ensure text appears above the background */
        }

        .peshika-link {
            color: var(--light-blue);
            transition: var(--transition);
            font-weight: 600;
            position: relative;
            padding: 5px 10px;
            background-color: rgba(255, 255, 255, 0.2); /* Slight background to improve readability */
            border-radius: 4px;
        }

        .peshika-link:hover {
            text-decoration: underline;
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.3);
        }

        /* Branch Popup Modal Styles */
.branch-popup-modal {
  display: none;
  position: fixed;
  z-index: 20001;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 136, 229, 0.18);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.branch-popup-modal.active {
  display: flex;
}
.branch-popup-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(30,136,229,0.18), 0 2px 12px 0 rgba(0,0,0,0.10);
  max-width: 420px;
  width: 96vw;
  padding: 0;
  position: relative;
  overflow: visible;
  min-height: 320px;
  animation: popupCardIn 0.4s cubic-bezier(.4,2,.6,1);
}
@keyframes popupCardIn {
  from { transform: scale(0.85) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.branch-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.branch-popup-close:hover {
  background: #1565c0;
  transform: scale(1.08) rotate(90deg);
}
.branch-popup-flip-card {
  perspective: 1200px;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.branch-popup-flip-inner {
  position: relative;
  width: 100%;
  min-height: 320px;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}
.branch-popup-flip-inner.flipped {
  transform: rotateY(180deg);
}
.branch-popup-flip-front, .branch-popup-flip-back {
  position: absolute;
  width: 100%;
  min-height: 320px;
  backface-visibility: hidden;
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.branch-popup-flip-back {
  transform: rotateY(180deg);
  background: #f5f5f5;
}
.branch-popup-flip-btn {
  margin: 18px 0 0 0;
  padding: 10px 22px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.branch-popup-flip-btn:hover {
  background: #1565c0;
}
.branch-popup-map-link {
  display: inline-block;
  margin-top: 12px;
  color: #1976d2;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
}
.branch-popup-flip-back iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 12px;
  margin-bottom: 18px;
}
.branch-popup-info {
  font-size: 0.98rem;
  color: #1976d2;
  margin-bottom: 18px;
  line-height: 1.6;
  font-weight: 500;
  animation: fadeInUp 0.7s cubic-bezier(.4,2,.6,1);
  background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  text-align: center;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.tiktok-video-wrapper {
  position: relative;
  width: 320px;
  height: 420px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tiktok-iframe {
  width: 320px;
  height: 420px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,136,229,0.10);
  background: #f5f5f5;
  display: block;
}
.tiktok-skeleton {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
  color: #1976d2;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  z-index: 2;
  animation: skeletonPulse 1.2s infinite alternate;
}
@keyframes skeletonPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
.branch-popup-card h2 {
  text-align: center;
  width: 100%;
}
@media (max-width: 600px) {
  body {
    font-size: 1rem;
    padding: 0;
    margin: 0;
    background: #f8fafd;
  }
  header .container, .container {
    padding: 0 6px !important;
    width: 100vw !important;
    min-width: 0 !important;
  }
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 0 0 0;
  }
  .logo-container {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .logo-title {
    font-size: 1.3rem;
    text-align: center;
  }
  .logo-subtitle {
    font-size: 0.95rem;
    text-align: center;
    margin-top: 2px;
  }
  .header-banner-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .sidebar-new {
    width: 90vw !important;
    min-width: 0 !important;
    max-width: 98vw !important;
    padding: 0 8px;
  }
  .sidebar-new-links {
    padding: 0 10px;
    gap: 10px;
  }
  .sidebar-link {
    font-size: 1rem;
    padding: 10px 10px;
  }
  .sidebar-new-open {
    top: 10px;
    right: 10px;
    font-size: 1rem;
    padding: 7px 12px;
  }
  }
  
  
  
  .ceo-msg-main {
    font-size: 0.98rem;
    text-align: center;
    word-break: break-word;
    padding: 0 2px;
  }
  .ceo-msg-signature-block {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .ceo-msg-signature {
    width: 80px;
    height: auto;
  }
  .ceo-msg-logo-small {
    width: 28px;
    height: 28px;
  }
  .logo-subtitle {
    background: #1976d2 !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 4px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(30,136,229,0.10);
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .ceo-msg-content-col h2 {
    text-align: center;
    margin-bottom: 6px;
    font-size: 1.15rem;
  }
  .ceo-msg-name {
    text-align: center;
    margin-bottom: 4px;
  }
  .ceo-msg-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 8px auto;
    width: 100%;
  }
  .ceo-msg-signature-block {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 8px;
    margin-bottom: 0;
  }

.gplogo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
@media (max-width: 600px) {
  .gplogo-img {
    width: 44px;
    height: 44px;
    border-radius: 0;
  }
}
.sidebar-new:not(.active) .sidebar-new-links,
.sidebar-new:not(.active) .sidebar-new-close {
  display: none !important;
}

.sidebar-new-close {
  background: linear-gradient(135deg, #1976d2 60%, #42a5f5 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  outline: none;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10001;
}
.sidebar-new-close:hover, .sidebar-new-close:focus {
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
  color: #fff;
  transform: scale(1.12) rotate(90deg);
  box-shadow: 0 4px 16px rgba(30,136,229,0.18);
}
@media (max-width: 600px) {
  header {
    background: #1976d2 !important;
    box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  }
  .header-content, .container {
    background: transparent !important;
  }
}