@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --navy: #0a1628;
  --navy-mid: #0d2040;
  --navy-light: #0e3a6b;
  --cyan: #29c4f5;
  --cyan-dark: #1a9dc7;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --gray: #a0a0a0;
  --gray-light: #e8e8e6;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 75px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 9px 22px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 1.5px; background: white; display: block; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--cyan);
}

.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 420px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  border: none;
  padding: 14px 30px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--cyan-dark); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 30px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1f3c 0%, #0e3a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  position: absolute;
  top: 0; left: 0;
}

.photo-placeholder {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

.photo-placeholder svg { opacity: 0.2; margin-bottom: 12px; display: block; margin-inline: auto; }

.hero-badge {
  position: absolute;
  bottom: 36px;
  left: 0;
  background: white;
  padding: 18px 22px;
  z-index: 2;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.badge-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-top: 4px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--gray-light);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 500;
  white-space: nowrap;
}

.trust-div { width: 1px; height: 18px; background: var(--gray-light); flex-shrink: 0; }

.trust-items { display: flex; gap: 30px; flex-wrap: wrap; }

.trust-item {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── SECTION SHARED ── */
.section-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}

.section-title-light {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: white;
}

/* ── SERVICES SECTION ── */
.services-section {
  padding: 90px 60px;
  background: var(--off-white);
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.sec-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sec-link:hover { opacity: 0.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: white;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}

.service-card:hover { background: var(--navy); }
.service-card:hover .card-title { color: white; }
.service-card:hover .card-desc { color: rgba(255,255,255,0.5); }
.service-card:hover .card-icon-wrap { border-color: var(--cyan); }
.service-card:hover .card-num { color: rgba(255,255,255,0.05); }

.card-icon-wrap {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
  font-size: 18px;
}

.card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s;
  letter-spacing: 0.2px;
}

.card-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #777;
  transition: color 0.3s;
}

.card-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 300;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  transition: color 0.3s;
}

/* ── ABOUT BAND ── */
.about-band {
  background: var(--navy);
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-band p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.img-block {
  background: var(--navy-light);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-block:first-child {
  grid-column: 1 / -1;
  height: 210px;
  background: var(--navy-mid);
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-placeholder {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 90px 60px;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 36px 28px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
}

.testimonial-role {
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--cyan);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}

.btn-navy {
  background: var(--navy);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-navy:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: #060f1e;
  padding: 60px 60px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo img { height: 28px; width: auto; opacity: 0.5; margin-bottom: 18px; }

.footer-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--cyan); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(41,196,245,0.08);
  border-radius: 50%;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: 60px;
  top: 40px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(41,196,245,0.05);
  border-radius: 50%;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 300;
  color: white;
  line-height: 1.1;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.page-hero h1 em { font-style: italic; color: var(--cyan); }

.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  max-width: 500px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--off-white);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 13px;
  color: #777;
  line-height: 1.9;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-item-text strong {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
  font-weight: 500;
}

.contact-item-text span {
  font-size: 14px;
  color: var(--navy);
  font-weight: 400;
}

.contact-form-wrap {
  background: white;
  padding: 48px 40px;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-light);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  width: 100%;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--navy-light); }

/* ── CLIENT PORTAL PAGE ── */
.portal-section {
  padding: 90px 60px;
  background: var(--off-white);
  text-align: center;
}

.portal-card {
  background: white;
  max-width: 500px;
  margin: 50px auto 0;
  padding: 56px 48px;
}

.portal-card h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
}

.portal-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── ABOUT PAGE ── */
.about-content {
  padding: 90px 60px;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 0;
}

.value-card {
  background: white;
  padding: 32px 26px;
}

.value-icon { font-size: 22px; margin-bottom: 14px; }
.value-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.value-desc { font-size: 12px; color: #888; line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-full {
  padding: 90px 60px;
  background: var(--off-white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.service-detail-text {
  background: white;
  padding: 56px 48px;
}

.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-detail-text p {
  font-size: 13px;
  color: #777;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-detail-text ul {
  list-style: none;
  margin-top: 12px;
}

.service-detail-text ul li {
  font-size: 13px;
  color: #666;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-text ul li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.service-detail-img {
  background: var(--navy-light);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-num-large {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px 20px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
  }
  .nav-links.open a { font-size: 13px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 20px 40px; }
  .hero-h1 { font-size: 36px; }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-right { min-height: 280px; }
  .hero-badge { bottom: 16px; padding: 12px 16px; }
  .badge-num { font-size: 22px; }

  /* Trust bar */
  .trust-bar { padding: 14px 20px; gap: 16px; overflow-x: auto; }
  .trust-items { gap: 16px; }
  .trust-item { font-size: 10px; white-space: nowrap; }

  /* Services section */
  .services-section { padding: 48px 20px; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 28px 20px; }

  /* About band */
  .about-band { grid-template-columns: 1fr; gap: 0; padding: 48px 20px; }
  .about-band > div:first-child { order: 1; }
  .about-band > div:last-child { order: 2; margin-top: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* CTA band */
  .cta-band { padding: 48px 20px; flex-direction: column; text-align: center; gap: 24px; }
  .cta-band h2 { font-size: 28px; }

  /* Page hero */
  .page-hero { padding: 60px 20px 48px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero p { font-size: 14px; }

  /* Services full page */
  .services-full { padding: 0; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-img { min-height: 240px !important; }
  .service-detail-text { padding: 36px 20px; }
  /* Alternate image position on mobile - always show image first */
  .service-detail > .service-detail-img { order: -1 !important; }

  /* About page */
  .about-content { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Contact page */
  .contact-section { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .contact-form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Portal page */
  .portal-section { padding: 48px 20px; }
  .portal-card { padding: 36px 24px; margin-top: 32px; }
  .services-grid[style] { max-width: 100% !important; margin-top: 32px !important; }

  /* Footer */
  footer { padding: 40px 20px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Google reviews */
  section > div[style*="grid-template-columns: repeat(3"] { 
    grid-template-columns: 1fr !important; 
  }

  /* Image grid */
  .img-grid { grid-template-columns: 1fr; }
  .img-block { height: 220px !important; }
  .img-block:first-child { height: 260px !important; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .section-title { font-size: 28px; }
  .section-title-light { font-size: 28px; }
  .page-hero h1 { font-size: 30px; }
  .cta-band h2 { font-size: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .stat-num { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}

/* ── PHOTO ROTATION ── */
@keyframes photoRotate {
  0%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  94%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes photoRotate2 {
  0%   { opacity: 0; }
  28%  { opacity: 0; }
  33%  { opacity: 1; }
  61%  { opacity: 1; }
  66%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes photoRotate3 {
  0%   { opacity: 0; }
  61%  { opacity: 0; }
  66%  { opacity: 1; }
  94%  { opacity: 1; }
  100% { opacity: 0; }
}

.rotating-img-1 { animation: photoRotate  12s infinite; }
.rotating-img-2 { animation: photoRotate2 12s infinite; }
.rotating-img-3 { animation: photoRotate3 12s infinite; }
