
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ===== WRAPPER ===== */
#vkns-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ===== SLIDER ===== */
.vkns-slider {
    display: flex;
    width: 100%;
    animation: vkns-slide 15s ease-in-out infinite;
}

.vkns-slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

/* ===== IMAGES ===== */
.vkns-img-desktop {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.vkns-img-mobile {
    display: none;
}

/* ===== DESKTOP OVERLAY ===== */
.vkns-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 20, 40, 0.9) 0%,
        rgba(10, 20, 40, 0.6) 45%,
        rgba(10, 20, 40, 0.2) 100%
    );
    display: flex;
    align-items: flex-end;
    padding-bottom: 90px;
}

/* ===== CONTENT BOX ===== */
.vkns-content {
    max-width: 720px;
    padding: 30px 36px;
    background: rgba(10, 20, 40, 0.35);
    border-left: 5px solid #0d6efd;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* ===== TEXT ===== */
.vkns-content h1 {
    font-size: clamp(3rem, 4.2vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.1;
}

.vkns-content p {
    font-size: 1.2rem;
    color: #e6e9f0;
    line-height: 1.8;
}

/* ===== SLIDE ANIMATION ===== */
@keyframes vkns-slide {
    0%   { transform: translateX(0%); }
    30%  { transform: translateX(0%); }
    35%  { transform: translateX(-100%); }
    63%  { transform: translateX(-100%); }
    68%  { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

    .vkns-img-desktop {
        display: none;
    }

    .vkns-img-mobile {
        display: block;
        width: 100vw;
        height: 80vh;
        max-height: 520px;
        min-height: 420px;
        object-fit: cover;
        object-position: center;
    }

    /* Remove overlay & text on mobile */
    .vkns-overlay {
        display: none;
    }

    #vkns-hero-wrapper,
    .vkns-slider,
    .vkns-slide {
        width: 100vw;
        margin: 0;
        padding: 0;
    }
}









/* =====================================================
   OUR SERVICES – SOBHA SAFETY NETS
   Stylish | Italic | Premium Look
===================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700;1,800&family=Inter:wght@400;500;600&display=swap');

/* ===== SECTION ===== */
#ssn-image-services {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(13,110,253,0.06), transparent 45%),
        radial-gradient(circle at bottom right, rgba(32,201,151,0.06), transparent 45%),
        linear-gradient(180deg, #f9fbff, #ffffff);
    font-family: 'Inter', sans-serif;
}

/* ===== HEADER ===== */
.ssn-img-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 85px;
}

.ssn-img-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    font-style: italic;
    color: #0a1428;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ssn-img-header h2 span {
    background: linear-gradient(90deg, #0d6efd, #00b4d8, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ssn-img-header p {
    font-size: 1.08rem;
    color: #555;
    line-height: 1.95;
}

/* ===== GRID ===== */
.ssn-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 42px;
}

/* ===== CARD ===== */
.ssn-img-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    animation: ssnReveal 0.8s ease both;
}

.ssn-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(13, 110, 253, 0.18);
}

/* ===== IMAGE ===== */
.ssn-img-wrap {
    overflow: hidden;
}

.ssn-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.ssn-img-card:hover img {
    transform: scale(1.08);
}

/* ===== CONTENT ===== */
.ssn-img-content {
    padding: 34px 30px;
    position: relative;
}

/* Accent line */
.ssn-img-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00b4d8, #20c997);
    border-radius: 6px;
}

/* Card Title */
.ssn-img-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    font-style: italic;
    color: #0a1428;
    margin-bottom: 14px;
}

/* Card Text */
.ssn-img-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
}

/* ===== LEARN MORE BUTTON ===== */
.ssn-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding: 12px 30px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    text-decoration: none;
    color: #0d6efd;
    border-radius: 50px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(90deg, #0d6efd, #00b4d8, #20c997) border-box;
    border: 2px solid transparent;
    transition: all 0.45s ease;
}

.ssn-learn-btn span {
    transition: transform 0.4s ease;
}

/* Hover CTA */
.ssn-img-card:hover .ssn-learn-btn {
    background: linear-gradient(90deg, #0d6efd, #00b4d8, #20c997);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.35);
}

.ssn-img-card:hover .ssn-learn-btn span {
    transform: translateX(6px);
}

/* ===== ANIMATION ===== */
@keyframes ssnReveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    #ssn-image-services {
        padding: 95px 15px;
    }

    .ssn-img-header h2 {
        font-size: 2.4rem;
    }

    .ssn-img-wrap img {
        height: 210px;
    }

    .ssn-img-content h3 {
        font-size: 1.35rem;
    }

    .ssn-img-content p {
        font-size: 0.96rem;
    }
}



/* =====================================================
   GALLERY – SOBHA SAFETY NETS
   Premium | Animated | Responsive
===================================================== */

/* ===== SECTION ===== */
#ssn-gallery {
    padding: 120px 0;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
    font-family: 'Inter', sans-serif;
}

/* ===== HEADER ===== */
.ssn-gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.ssn-gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    font-weight: 700;
    font-style: italic;
    color: #0a1428;
    margin-bottom: 18px;
}

.ssn-gallery-header h2 span {
    background: linear-gradient(90deg, #0d6efd, #00b4d8, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ssn-gallery-header p {
    font-size: 1.08rem;
    color: #555;
    line-height: 1.9;
}

/* ===== GRID ===== */
.ssn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* ===== GALLERY ITEM ===== */
.ssn-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    animation: ssnGalleryReveal 0.8s ease both;
}

.ssn-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ssn-gallery-item:hover img {
    transform: scale(1.12);
}

/* ===== OVERLAY ===== */
.ssn-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 20, 40, 0.75),
        rgba(10, 20, 40, 0.15)
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.ssn-gallery-item:hover .ssn-gallery-overlay {
    opacity: 1;
}

.ssn-gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #ffffff;
}

/* ===== ANIMATION ===== */
@keyframes ssnGalleryReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    #ssn-gallery {
        padding: 90px 15px;
    }

    .ssn-gallery-header h2 {
        font-size: 2.4rem;
    }

    .ssn-gallery-item img {
        height: 220px;
    }
}





.sobha-about-v2 {
  padding: 130px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.sobha-about-inner {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 110px;
  align-items: center;
}

/* HEADING */
.sobha-about-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 40px;
  position: relative;
}

.sobha-about-content h2::before {
  content: "ABOUT";
  position: absolute;
  top: -42px;
  left: 0;
  font-size: 72px;
  font-weight: 800;
  color: rgba(13, 27, 42, 0.05);
  letter-spacing: 8px;
}

/* TEXT */
.sobha-about-content p {
  font-size: 17.5px;
  line-height: 2.1;
  color: #4b5b6b;
  margin-bottom: 28px;
}

/* BACKLINK STYLING */
.sobha-about-content a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  margin: 0 4px;
}

.sobha-about-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  transition: width 0.35s ease;
}

.sobha-about-content a:hover::after {
  width: 100%;
}

/* AREA HIGHLIGHT */
.area {
  color: #1a73e8;
  font-weight: 500;
  border-bottom: 1px dashed rgba(26, 115, 232, 0.4);
  padding-bottom: 2px;
}

/* IMAGES */
.sobha-about-visual {
  position: relative;
}

.img-primary {
  width: 520px;
  height: 380px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 50px 90px rgba(0, 0, 0, 0.12);
  
}

.img-secondary {
  position: absolute;
  width: 240px;
  height: 170px;
  object-fit: cover;
  bottom: -50px;
  left: -50px;
  border-radius: 22px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}

.sobha-about-visual:hover .img-secondary {
  transform: translateY(-12px) scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sobha-about-inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .img-primary {
    width: 100%;
    height: 300px;
  }

  .img-secondary {
    width: 200px;
    height: 140px;
    left: 10px;
    bottom: -30px;
  }
}





.sobha-about-section {
  padding: 100px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.sobha-about-container {
  max-width: 1100px;
  margin: auto;
  animation: fadeUp 1.1s ease-in-out;
}

.sobha-about-title {
  font-size: 44px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 40px;
  position: relative;
}

.sobha-about-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  display: block;
  margin-top: 14px;
  border-radius: 10px;
}

.sobha-about-text {
  font-size: 17.5px;
  line-height: 2;
  color: #4b5b6b;
  margin-bottom: 26px;
  transition: color 0.3s ease;
}

.sobha-about-text:hover {
  color: #1f3b57;
}

.sobha-about-text strong {
  color: #1a73e8;
  font-weight: 600;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
  .sobha-about-title {
    font-size: 34px;
  }

  .sobha-about-text {
    font-size: 16.5px;
    line-height: 1.9;
  }
}





/* ======================= contact section ======================= */
.ssn-contact-area {
  padding: 140px 20px;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 70%);
  font-family: 'Poppins', sans-serif;
}

.ssn-contact-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 110px;
  align-items: center;
}

/* LEFT */
.ssn-title {
  font-size: 46px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 28px;
}

.ssn-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  display: block;
  margin-top: 14px;
  border-radius: 10px;
}

.ssn-contact-details p {
  font-size: 17.5px;
  line-height: 2;
  color: #4b5b6b;
  margin-bottom: 22px;
}

.ssn-info-item {
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.ssn-info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(26,115,232,.25);
}

.ssn-info-item span {
  font-weight: 600;
  color: #1a73e8;
}

/* FORM */
.ssn-contact-box {
  background: #ffffff;
  padding: 55px;
  border-radius: 32px;
  box-shadow: 0 50px 110px rgba(0,0,0,0.12);
}

.ssn-field {
  margin-bottom: 22px;
}

.ssn-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.ssn-field input,
.ssn-field select,
.ssn-field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid #dce6f2;
  font-size: 15.5px;
  transition: .3s;
}

.ssn-field input:focus,
.ssn-field select:focus,
.ssn-field textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,.15);
}

.ssn-error {
  display: none;
  font-size: 12px;
  color: #e53935;
}

.ssn-contact-box button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(90deg,#1a73e8,#4fc3f7);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

.ssn-contact-box button:disabled {
  background: #cfd8e3;
  cursor: not-allowed;
}

.ssn-status {
  display: none;
  margin-top: 16px;
  font-weight: 600;
}

.ssn-success { color: #2e7d32; }
.ssn-fail { color: #e53935; }

/* ANIMATIONS */
.ssn-animate-left { animation: ssnLeft 1s ease; }
.ssn-animate-right { animation: ssnRight 1s ease; }

@keyframes ssnLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes ssnRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}

@media(max-width:900px){
  .ssn-contact-wrapper { grid-template-columns:1fr; gap:80px; }
  .ssn-title { font-size:36px; }
}









.ssn-importance-section {
  font-family: 'Poppins', sans-serif;
}

/* COMMON BLOCK */
.ssn-importance-block {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

/* BACKGROUND IMAGES */
.pigeon-bg {
  background-image: url("../invisible-grills/invisible-grills1.jpeg");
}

.balcony-bg {
  background-image: url("../pigeon-safety-nets/pigeon-safety-nets1.jpg");
}

/* FIX BACKGROUND IMAGE – NO SCROLL */
.ssn-importance-block {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed; /* 🔥 IMPORTANT LINE */
}


/* OVERLAY */
.ssn-overlay {
  max-width: 600px;
  padding: 60px;
  background: none; /* mana color */
  color: #ffffff;
}

/* LEFT / RIGHT */
.ssn-left {
  margin-left: 6%;
}

.ssn-right {
  margin-left: auto;
  margin-right: 6%;
}

.reverse {
  justify-content: flex-end;
}

/* TEXT */
.ssn-overlay h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 22px;
  color: rgb(255, 255, 255);
}

.ssn-overlay p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* REVIEW */
.ssn-review {
  margin-top: 25px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-left: 4px solid #ffffff;
  font-size: 14.5px;
  font-style: italic;
}

.ssn-review span {
  display: block;
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .ssn-importance-block {
    min-height: auto;
    padding: 60px 20px;
  }

  .ssn-overlay {
    max-width: 100%;
    padding: 40px;
  }

  .ssn-left,
  .ssn-right {
    margin: 0;
  }
}



.ssn-about-pro {
  padding: 130px 20px;
  background: #ffffff;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.ssn-about-inner {
  max-width: 1100px;
  margin: auto;
  animation: ssnFadeUp 1.1s ease;
}

.ssn-about-title {
  font-size: 44px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 38px;
  letter-spacing: -0.5px;
}

.ssn-about-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  display: block;
  margin-top: 14px;
  border-radius: 10px;
}

.ssn-about-para {
  font-size: 17px;
  line-height: 2;
  color: #4b5b6b;
  margin-bottom: 26px;
}

.ssn-about-para b {
  color: #1a73e8;
  font-weight: 600;
}

/* Animation */
@keyframes ssnFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .ssn-about-title {
    font-size: 34px;
  }

  .ssn-about-para {
    font-size: 16px;
    line-height: 1.9;
  }
}




/* ======================= map section ======================= */

.ssn-map-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  font-family: 'Inter', 'Poppins', sans-serif;
}

.ssn-map-wrapper {
  max-width: 1200px;
  margin: auto;
}

.ssn-map-header {
  text-align: center;
  margin-bottom: 50px;
}

.ssn-map-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 18px;
}

.ssn-map-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

.ssn-map-header p {
  font-size: 17px;
  line-height: 1.9;
  color: #4b5b6b;
  max-width: 720px;
  margin: auto;
}

.ssn-map-header b {
  color: #1a73e8;
  font-weight: 600;
}

/* MAP BOX */
.ssn-map-container {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ssn-map-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 120px rgba(26, 115, 232, 0.35);
}

.ssn-map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .ssn-map-header h2 {
    font-size: 34px;
  }

  .ssn-map-container iframe {
    height: 300px;
  }
}




/* ======================= Footer section ======================= */
.ssn-footer {
  background: #041a3a url("images/world-map.png") no-repeat center;
  background-size: cover;
  color: #cfd8e3;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.ssn-footer-overlay {
  background: rgba(3, 20, 55, 0.92);
  padding-top: 80px;
}

.ssn-footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 70px;
}

/* LOGO */
.ssn-footer-logo {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.ssn-footer-logo span {
  color: #4fc3f7;
}

/* TEXT */
.ssn-footer-text {
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.ssn-footer-text b {
  color: #4fc3f7;
}

/* CONTACT */
.ssn-footer-contact {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ssn-footer-contact li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

/* SOCIALS */
.ssn-socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ssn-socials a:hover {
  background: #4fc3f7;
  color: #041a3a;
}

/* LINKS */
.ssn-footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #ffffff;
}

.ssn-footer-col ul {
  list-style: none;
  padding: 0;
}

.ssn-footer-col ul li {
  margin-bottom: 12px;
}

.ssn-footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ssn-footer-col ul li a:hover {
  color: #4fc3f7;
  padding-left: 6px;
}

/* BOTTOM BAR */
.ssn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  font-size: 14px;
}

.ssn-footer-bottom b {
  color: #4fc3f7;
}

.ssn-footer-bottom a {
  color: #4fc3f7;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .ssn-footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ssn-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* FOOTER LINK ARROW STYLE */
.ssn-footer-col ul li a {
  position: relative;
  padding-left: 18px;
}

/* Arrow before link */
.ssn-footer-col ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4fc3f7;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.ssn-footer-col ul li a:hover::before {
  transform: translateY(-50%) translateX(0.2px);
  color: #ffffff;
}



.ssn-faq-section {
  padding: 120px 20px;
  background: #f7fbff;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.ssn-faq-wrapper {
  max-width: 1000px;
  margin: auto;
}

.ssn-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.ssn-faq-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 16px;
}

.ssn-faq-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #4fc3f7);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

.ssn-faq-header p {
  font-size: 17px;
  line-height: 1.9;
  color: #4b5b6b;
}

.ssn-faq-header b {
  color: #000000;
}

/* FAQ ITEMS */
.ssn-faq-item {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* QUESTION */
.ssn-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: #0d1b2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ssn-faq-question span {
  font-size: 26px;
  color: #1a73e8;
  transition: transform 0.3s ease;
}

/* ANSWER */
.ssn-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.ssn-faq-answer p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #4b5b6b;
  margin-bottom: 16px;
}



/* ACTIVE */
.ssn-faq-item.active .ssn-faq-answer {
  max-height: 600px;
  padding: 20px 26px 26px;
}

.ssn-faq-item.active .ssn-faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .ssn-faq-header h2 {
    font-size: 34px;
  }
}

.ssn-action-link {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.ssn-action-link:hover {
  text-decoration: underline;
}
