/* ==========================================================================
   ROHAAN CONSTRUCTIONS - SCOPED THEME CSS
   ========================================================================== */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

.rohaan-theme {
  --primary: rgb(57, 170, 224);
  --primary-hover: rgb(37, 150, 204);
  --primary-light: rgba(57, 170, 224, 0.1);
  --white: #FFFFFF;
  --dark: #0F172A;
  --gray-light: #F8FAFC;
  --gray-border: #E2E8F0;
  --text-main: #334155;
  --text-muted: #64748B;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-medium: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 30px 60px rgba(15, 23, 42, 0.12);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

.rohaan-theme,
.rohaan-theme *,
.rohaan-theme::before,
.rohaan-theme *::before,
.rohaan-theme::after,
.rohaan-theme *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rohaan-theme {
  scroll-behavior: smooth;
  font-size: 16px;
}

.rohaan-theme {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.rohaan-theme h1,
.rohaan-theme h2,
.rohaan-theme h3,
.rohaan-theme h4,
.rohaan-theme h5,
.rohaan-theme h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.rohaan-theme p {
  font-size: 1rem;
  font-weight: 300;
}

.rohaan-theme a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.rohaan-theme img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rohaan-theme ul {
  list-style: none;
}

.rohaan-theme .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.rohaan-theme .contact-sec {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}


.rohaan-theme .section-padding {
  padding: 5rem 0;
}

.rohaan-theme .section-light {
  background-color: var(--gray-light);
}

.rohaan-theme .text-center {
  text-align: center;
}

.rohaan-theme .section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.rohaan-theme .section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.rohaan-theme .section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rohaan-theme .header-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin: 1.25rem auto 2.5rem auto;
  border-radius: 2px;
}

.rohaan-theme .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.rohaan-theme .btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.rohaan-theme .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(57, 170, 224, 0.3);
}

.rohaan-theme .btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.rohaan-theme .btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(57, 170, 224, 0.2);
}

.rohaan-theme .btn-sm {
  padding: 0.5rem 3.25rem;
  font-size: 0.9rem;
}

.rohaan-theme .arrow {
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.rohaan-theme .btn:hover .arrow {
  transform: translateX(4px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px) translateX(-50%);
  }

  50% {
    transform: translateY(-12px) translateX(-50%);
  }
}

.rohaan-theme .fade-in-up,
.rohaan-theme .fade-in-left,
.rohaan-theme .fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rohaan-theme .fade-in-up {
  transform: translateY(50px);
}

.rohaan-theme .fade-in-left {
  transform: translateX(-60px);
}

.rohaan-theme .fade-in-right {
  transform: translateX(60px);
}

.rohaan-theme .fade-in-up.visible,
.rohaan-theme .fade-in-left.visible,
.rohaan-theme .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.rohaan-theme .delay-100 {
  transition-delay: 0.1s;
}

.rohaan-theme .delay-200 {
  transition-delay: 0.2s;
}

.rohaan-theme .delay-300 {
  transition-delay: 0.3s;
}

.rohaan-theme .delay-400 {
  transition-delay: 0.4s;
}

.rohaan-theme .delay-500 {
  transition-delay: 0.5s;
}

.rohaan-theme .delay-600 {
  transition-delay: 0.6s;
}

.rohaan-theme #main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: var(--transition-smooth);
  padding: 1.2rem 0;
  background: transparent;
}

.rohaan-theme #main-header.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rohaan-theme .header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rohaan-theme .logo-link {
  flex-shrink: 0;
}

.rohaan-theme .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  background: oldlace;
  border-radius: 6px;
}

.rohaan-theme .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rohaan-theme .nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.4rem 0;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.rohaan-theme .nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.rohaan-theme .nav-item:hover {
  color: var(--white);
}

.rohaan-theme .nav-item:hover::after {
  width: 100%;
}

.rohaan-theme .nav-dropdown {
  position: relative;
}

.rohaan-theme .nav-dropdown>.nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rohaan-theme .nav-dropdown>.nav-item .dropdown-arrow {
  display: inline-block;
  font-size: 10px;
  margin-left: 2px;
  transition: var(--transition-fast);
  line-height: 1;
}

.rohaan-theme .nav-dropdown.active>.nav-item .dropdown-arrow {
  transform: rotate(180deg);
}

.rohaan-theme .nav-dropdown:hover>.nav-item .dropdown-arrow {
  transform: rotate(180deg);
}

.rohaan-theme .dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.rohaan-theme .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  transition: var(--transition-fast);
}

.rohaan-theme .dropdown-menu a:hover {
  background: rgba(57, 170, 224, 0.08);
  color: var(--primary);
  padding-left: 26px;
}

.rohaan-theme .nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rohaan-theme .header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.rohaan-theme .btn-header-cta {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

.rohaan-theme .mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 99999;
  padding: 0;
}

.rohaan-theme .mobile-nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: var(--transition-fast);
  transform-origin: center;
}

.rohaan-theme .mobile-nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.rohaan-theme .mobile-nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.rohaan-theme .mobile-nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .rohaan-theme .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 25px 30px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }

  .rohaan-theme .nav-links.active {
    right: 0;
  }

  .rohaan-theme .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

  .rohaan-theme .nav-overlay.active {
    display: block;
  }

  .rohaan-theme .nav-item {
    width: 100%;
    padding: 14px 0;
    color: #ffffff;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .rohaan-theme .nav-item::after {
    display: none;
  }

  .rohaan-theme .nav-dropdown {
    width: 100%;
  }

  .rohaan-theme .nav-dropdown>.nav-item {
    justify-content: space-between;
  }

  .rohaan-theme .nav-dropdown>.nav-item .dropdown-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
  }

  .rohaan-theme .nav-dropdown.active>.nav-item .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary);
  }

  .rohaan-theme .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 100%;
    margin: 0;
    padding: 5px 0 5px 15px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    box-shadow: none;
    transition: none;
  }

  .rohaan-theme .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .rohaan-theme .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .rohaan-theme .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .rohaan-theme .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary);
    padding-left: 15px;
  }

  .rohaan-theme .mobile-nav-toggle {
    display: flex;
  }

  .rohaan-theme .btn-header-cta {
    display: none;
  }

  .rohaan-theme .logo-img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .header-container {
    padding: 0 1.2rem;
  }

  .rohaan-theme .nav-links {
    width: 100%;
    max-width: 100%;
    padding: 70px 20px 30px;
  }

  .rohaan-theme .logo-img {
    height: 36px;
  }
}

.rohaan-theme .hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.rohaan-theme .hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rohaan-theme .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rohaan-theme .hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;
}

.rohaan-theme .hero-content-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .rohaan-theme .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rohaan-theme .hero-section {
    min-height: 600px;
    height: 80vh;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .hero-section {
    min-height: 500px;
    height: 70vh;
  }
}

.rohaan-theme .project-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.rohaan-theme .filter-tab {
  padding: 0.5rem 1.8rem;
  background: transparent;
  border: 1px solid var(--gray-border);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 30px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.rohaan-theme .filter-tab:hover,
.rohaan-theme .filter-tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(57, 170, 224, 0.25);
}

.rohaan-theme .projects-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0;
}

.rohaan-theme .projects-carousel-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.3rem 1.5rem 0.3rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rohaan-theme .projects-carousel-container::-webkit-scrollbar {
  display: none;
}

.rohaan-theme .carousel-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.rohaan-theme .carousel-control:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 15px rgba(57, 170, 224, 0.3);
}

.rohaan-theme .project-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: 280px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.rohaan-theme .project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(57, 170, 224, 0.15);
}

.rohaan-theme .project-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.rohaan-theme .project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.rohaan-theme .project-card:hover .project-img {
  transform: scale(1.06);
}

.rohaan-theme .status-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.rohaan-theme .badge-ready {
  background: #22C55E;
  color: var(--white);
}

.rohaan-theme .badge-sold {
  background: #e82424;
  color: var(--white);
}

.rohaan-theme .badge-ongoing {
  background: #E28939;
  color: var(--white);
}

.rohaan-theme .project-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rohaan-theme .project-details h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.rohaan-theme .project-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.rohaan-theme .project-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 0.8rem 0;
  margin-bottom: 1.2rem;
  text-align: center;
}

.rohaan-theme .spec-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--gray-border);
}

.rohaan-theme .spec-col:last-child {
  border-right: none;
}

.rohaan-theme .spec-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.rohaan-theme .spec-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

.rohaan-theme .project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.rohaan-theme .amenity-info {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.rohaan-theme .project-all-btn-wrapper {
  margin-top: 2rem;
}

.rohaan-theme .projects-carousel-container.single-card-view {
  justify-content: center;
}

.rohaan-theme .projects-carousel-container.single-card-view .project-card {
  flex: 0 0 380px;
  max-width: 380px;
}

@media (max-width: 991px) {
  .rohaan-theme .project-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .rohaan-theme .project-card {
    flex: 0 0 100%;
    min-width: unset;
  }

  .rohaan-theme .projects-carousel-container.single-card-view .project-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .rohaan-theme .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .rohaan-theme .filter-tab {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
  }

  .rohaan-theme .project-filters {
    gap: 0.5rem;
  }
}

.rohaan-theme .about-image-frame {
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  overflow: visible;
}

.rohaan-theme .about-img {
  border-radius: 12px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.rohaan-theme .about-floating-card {
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  padding: 1.2rem 1.8rem;
  max-width: 240px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-medium);
  animation: floatCard 4s ease-in-out infinite;
}

.rohaan-theme .floating-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-body);
}

.rohaan-theme .floating-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.rohaan-theme .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.rohaan-theme .feature-item {
  display: flex;
  gap: 1rem;
}

.rohaan-theme .feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(57, 170, 224, 0.3);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.rohaan-theme .feature-item:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.rohaan-theme .feature-svg {
  width: 20px;
  height: 20px;
}

.rohaan-theme .feature-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.rohaan-theme .feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .rohaan-theme .about-img {
    height: 320px;
  }

  .rohaan-theme .about-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    width: 85%;
    max-width: 300px;
  }

  .rohaan-theme .about-floating-card {
    animation: floatCard 4s ease-in-out infinite;
  }

  .rohaan-theme @keyframes floatCard {

    0%,
    100% {
      transform: translateY(0px) translateX(-50%);
    }

    50% {
      transform: translateY(-10px) translateX(-50%);
    }
  }

  .rohaan-theme .features-grid {
    grid-template-columns: 1fr;
  }
}

.rohaan-theme .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.rohaan-theme .service-card {
  padding: 2rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.rohaan-theme .service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.rohaan-theme .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(57, 170, 224, 0.15);
}

.rohaan-theme .service-card:hover::after {
  transform: scaleX(1);
}

.rohaan-theme .service-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.rohaan-theme .service-card:hover .service-icon-bg {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(5deg) scale(1.05);
}

.rohaan-theme .service-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.rohaan-theme .service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.rohaan-theme .service-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.rohaan-theme .service-link:hover {
  color: var(--dark);
}

@media (max-width: 991px) {
  .rohaan-theme .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .services-grid {
    grid-template-columns: 1fr;
  }
}

.rohaan-theme .testimonials-section {
  background: #f3f8fc;
  padding: 5rem 0;
}

.rohaan-theme .google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid rgba(57, 170, 224, 0.12);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  justify-content: center;
}

.rohaan-theme .google-text {
  color: #0f172a;
  font-weight: 700;
}

.rohaan-theme .stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.rohaan-theme .rating-score {
  color: #64748b;
  font-weight: 600;
}

.rohaan-theme .testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.rohaan-theme .testimonial-modern {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(57, 170, 224, 0.06);
  transition: var(--transition-smooth);
  position: relative;
}

.rohaan-theme .testimonial-modern::before {
  content: "❝";
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 50px;
  color: rgba(57, 170, 224, 0.08);
  font-family: serif;
}

.rohaan-theme .testimonial-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 170, 224, 0.25);
  box-shadow: 0 20px 45px rgba(57, 170, 224, 0.10);
}

.rohaan-theme .testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.rohaan-theme .client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgb(22, 120, 170));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.rohaan-theme .client-details h4 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.rohaan-theme .client-details span {
  color: #64748b;
  font-size: 12px;
}

.rohaan-theme .rating {
  margin-left: auto;
  color: #fbbf24;
  font-size: 13px;
}

.rohaan-theme .testimonial-modern p {
  color: #475569;
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

.rohaan-theme .testimonial-btn-wrap {
  margin-top: 35px;
  text-align: center;
}

.rohaan-theme .review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background: #0f172a;
  color: #fff;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.rohaan-theme .review-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .rohaan-theme .testimonial-slider {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .testimonial-slider {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rohaan-theme .google-rating-badge {
    flex-direction: column;
    border-radius: 16px;
    padding: 14px 18px;
  }

  .rohaan-theme .rating {
    display: none;
  }
}

.rohaan-theme .director-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  padding: 5rem 0;
}

.rohaan-theme .director-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.rohaan-theme .director-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.rohaan-theme .director-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.rohaan-theme .director-frame:hover .director-img {
  transform: scale(1.03);
}

.rohaan-theme .ceo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rohaan-theme .ceo-badge h3 {
  color: var(--primary);
  font-size: 26px;
  margin: 0;
  line-height: 1;
}

.rohaan-theme .ceo-badge span {
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rohaan-theme .quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.rohaan-theme .quote-highlight {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: #0f172a;
}

.rohaan-theme .director-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.rohaan-theme .director-text.strong {
  color: #0f172a;
  font-weight: 600;
}

.rohaan-theme .director-signature {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rohaan-theme .director-name {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.rohaan-theme .director-title {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .rohaan-theme .director-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .rohaan-theme .director-content {
    text-align: center;
  }

  .rohaan-theme .director-frame {
    max-width: 380px;
    margin: auto;
  }

  .rohaan-theme .director-signature {
    text-align: center;
  }

  .rohaan-theme .quote-card {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .director-frame {
    max-width: 300px;
  }

  .rohaan-theme .quote-card {
    padding: 20px;
  }

  .rohaan-theme .quote-highlight {
    font-size: 17px;
  }

  .rohaan-theme .ceo-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }

  .rohaan-theme .ceo-badge h3 {
    font-size: 20px;
  }

  .rohaan-theme .director-name {
    font-size: 19px;
  }
}

.rohaan-theme .allied-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.94));
}

.rohaan-theme .allied-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(57, 170, 224, 0.10), transparent 40%);
  pointer-events: none;
}

.rohaan-theme .allied-section .container {
  position: relative;
  z-index: 2;
}

.rohaan-theme .allied-section .section-title {
  color: #ffffff;
  margin-bottom: 10px;
}

.rohaan-theme .allied-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
}

.rohaan-theme .allied-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.rohaan-theme .allied-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.rohaan-theme .allied-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(57, 170, 224, 0.08), transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.rohaan-theme .allied-card:hover::before {
  opacity: 1;
}

.rohaan-theme .allied-card img {
  max-width: 80%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition-smooth);

  position: relative;
  z-index: 1;
}

.rohaan-theme .allied-card .company-name {
  display: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.rohaan-theme .allied-card img:not([src]),
.rohaan-theme .allied-card img[src=""],
.rohaan-theme .allied-card img[src*="error"] {
  display: none;
}

.rohaan-theme .allied-card img:not([src])+.company-name,
.rohaan-theme .allied-card img[src=""]+.company-name,
.rohaan-theme .allied-card img[src*="error"]+.company-name {
  display: block;
}

@media (max-width: 991px) {
  .rohaan-theme .allied-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .rohaan-theme .allied-card {
    height: 105px;
  }

  .rohaan-theme .allied-card img {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .allied-section {
    padding: 3.5rem 0;
  }

  .rohaan-theme .allied-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .rohaan-theme .allied-card {
    height: 90px;
    border-radius: 12px;
    padding: 15px;
  }

  .rohaan-theme .allied-card img {
    max-width: 85%;
    max-height: 48px;
  }

  .rohaan-theme .allied-card .company-name {
    font-size: 12px;
  }
}

.rohaan-theme .contact-section {
  padding: 5rem 0;
  background: #f8fbfe;
}

.rohaan-theme .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.rohaan-theme .contact-form-block,
.rohaan-theme .contact-map-block {
  height: 100%;
}

.rohaan-theme .map-card {
  height: 100%;
  min-height: 100%;
}

.rohaan-theme .contact-map-block iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.rohaan-theme .contact-form-block {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  /* min-height: 116vh !important; */
}

.rohaan-theme .contact-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.rohaan-theme .contact-form-block h2 {
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 30px;
}

.rohaan-theme .contact-form-block p {
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.7;
}

.rohaan-theme .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 35px;
}

.rohaan-theme .form-group {
  margin-bottom: 16px;
}

.rohaan-theme .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
}

.rohaan-theme .form-group input,
.rohaan-theme .form-group select,
.rohaan-theme .form-group textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.rohaan-theme .form-group input:focus,
.rohaan-theme .form-group select:focus,
.rohaan-theme .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 170, 224, 0.12);
}

.rohaan-theme .contact-btn {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.rohaan-theme .contact-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 170, 224, 0.3);
}

.rohaan-theme .map-card {
  position: relative;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.rohaan-theme .map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.rohaan-theme .map-floating-card {
  position: absolute;
  bottom: 20px;
  right: 15px;
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.rohaan-theme .map-floating-card img {
  width: 80px;
  height: 80px;
  display: block;
}

.rohaan-theme .map-floating-card span {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .rohaan-theme .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rohaan-theme .contact-form-block {
    padding: 30px;
  }

  .rohaan-theme .contact-form-block h2 {
    font-size: 28px;
  }

  .rohaan-theme .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rohaan-theme .map-card {
    min-height: 400px;
  }

  .rohaan-theme .map-floating-card img {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .contact-form-block {
    padding: 22px;
  }

  .rohaan-theme .contact-form-block h2 {
    font-size: 24px;
  }

  .rohaan-theme .map-card {
    min-height: 320px;
  }

  .rohaan-theme .map-floating-card {
    padding: 10px;
  }

  .rohaan-theme .map-floating-card img {
    width: 55px;
    height: 55px;
  }

  .rohaan-theme .map-floating-card span {
    font-size: 11px;
  }
}

.rohaan-theme .footer-section {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.rohaan-theme .footer-top {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 3rem;
}

.rohaan-theme .footer-col h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.rohaan-theme .footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.rohaan-theme .col-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.rohaan-theme .footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  background: aliceblue;
  border-radius: 2px;
}

.rohaan-theme .brand-desc {
  font-weight: 300;
  line-height: 1.6;
}

.rohaan-theme .social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.rohaan-theme .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.rohaan-theme .social-svg {
  width: 16px;
  height: 16px;
}

.rohaan-theme .social-icon:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.rohaan-theme .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rohaan-theme .footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.rohaan-theme .footer-col ul a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.rohaan-theme .footer-address {
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rohaan-theme .footer-contact-details {
  font-weight: 300;
  line-height: 1.6;
}

.rohaan-theme .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0;
}

.rohaan-theme .footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.rohaan-theme .copy-text {
  font-size: 0.8rem;
}

.rohaan-theme .legal-text {
  font-size: 0.8rem;
}

.rohaan-theme .legal-text a {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.4rem;
  transition: var(--transition-fast);
}

.rohaan-theme .legal-text a:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .rohaan-theme .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.2rem;
  }

  .rohaan-theme .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .rohaan-theme .footer-logo {
    height: 38px;
  }
}

.rohaan-theme .om-section {
  background: #0f172a;
  overflow: hidden;
}

.rohaan-theme .om-wrap {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
}

.rohaan-theme .om-visual {
  position: relative;
  min-height: 600px;
}

.rohaan-theme .om-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.rohaan-theme .om-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}

.rohaan-theme .om-eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rohaan-theme .om-heading {
  color: #ffffff;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.2;
  margin-bottom: 40px;
  font-size: 2rem;
}

.rohaan-theme .om-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rohaan-theme .om-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.rohaan-theme .om-item:nth-child(2) {
  margin-left: 30px;
}

.rohaan-theme .om-item:nth-child(3) {
  margin-left: 60px;
}

.rohaan-theme .om-diamond {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: linear-gradient(135deg, var(--primary), rgb(37, 125, 170));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(57, 170, 224, 0.2);
  transform: rotate(45deg);
}

.rohaan-theme .om-diamond svg {
  transform: rotate(-45deg);
}

.rohaan-theme .om-text h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 6px;
}

.rohaan-theme .om-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 14px;
}

@media (max-width: 991px) {
  .rohaan-theme .om-wrap {
    grid-template-columns: 1fr;
  }

  .rohaan-theme .om-visual {
    min-height: 350px;
  }

  .rohaan-theme .om-content {
    padding: 40px 30px;
  }

  .rohaan-theme .om-item:nth-child(2),
  .rohaan-theme .om-item:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .om-visual {
    min-height: 250px;
  }

  .rohaan-theme .om-content {
    padding: 30px 20px;
  }

  .rohaan-theme .om-heading {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .rohaan-theme .om-diamond {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .rohaan-theme .om-text h3 {
    font-size: 16px;
  }

  .rohaan-theme .om-text p {
    font-size: 13px;
  }
}

.rohaan-theme .ov-section {
  padding: 70px 24px;
  background: #ffffff;
}

.rohaan-theme .ov-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 50px;
  align-items: center;
}

.rohaan-theme .ov-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.rohaan-theme .ov-arc {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px solid #cfe6f5;
  border-radius: 46px;
  transform: translate(-46%, -50%) rotate(45deg);
  z-index: 1;
}

.rohaan-theme .ov-arc1 {
  width: 320px;
  height: 320px;
}

.rohaan-theme .ov-arc2 {
  width: 360px;
  height: 360px;
  opacity: 0.5;
}

.rohaan-theme .ov-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 0 0 10px #ffffff, 0 20px 45px rgba(20, 33, 61, 0.2);
  z-index: 2;
  background: #dfe8ee;
}

.rohaan-theme .ov-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165%;
  height: 165%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.rohaan-theme .ov-logo {
  position: absolute;
  top: 16%;
  left: 21%;
  width: 46px;
  height: 46px;
  background: #2596d1;
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(20, 33, 61, 0.2);
  z-index: 3;
}

.rohaan-theme .ov-content {
  max-width: 540px;
}

.rohaan-theme .ov-eyebrow {
  margin: 0 0 8px;
  color: #2596d1;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.rohaan-theme .ov-heading {
  margin: 0 0 28px;
  color: #14213d;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 800;
}

.rohaan-theme .ov-list {
  display: flex;
  flex-direction: column;
}

.rohaan-theme .ov-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed #dfe4ea;
}

.rohaan-theme .ov-item--last {
  border-bottom: none;
  padding-bottom: 0;
}

.rohaan-theme .ov-item:first-child {
  padding-top: 0;
}

.rohaan-theme .ov-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9f4fb;
  border: 1px solid #dcecf7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rohaan-theme .ov-text h3 {
  margin: 0 0 4px;
  color: #14213d;
  font-size: 17px;
  font-weight: 700;
}

.rohaan-theme .ov-text p {
  margin: 0;
  color: #64707e;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .rohaan-theme .ov-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rohaan-theme .ov-visual {
    max-width: 340px;
  }

  .rohaan-theme .ov-content {
    max-width: 100%;
  }

  .rohaan-theme .ov-diamond {
    width: 240px;
    height: 240px;
  }

  .rohaan-theme .ov-arc1 {
    width: 280px;
    height: 280px;
  }

  .rohaan-theme .ov-arc2 {
    width: 310px;
    height: 310px;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .ov-section {
    padding: 40px 16px;
  }

  .rohaan-theme .ov-visual {
    max-width: 280px;
  }

  .rohaan-theme .ov-diamond {
    width: 200px;
    height: 200px;
    border-radius: 36px;
  }

  .rohaan-theme .ov-arc1 {
    width: 230px;
    height: 230px;
  }

  .rohaan-theme .ov-arc2 {
    width: 260px;
    height: 260px;
  }

  .rohaan-theme .ov-logo {
    width: 38px;
    height: 38px;
    top: 14%;
    left: 18%;
  }

  .rohaan-theme .ov-logo svg {
    width: 20px;
    height: 20px;
  }

  .rohaan-theme .ov-heading {
    font-size: 20px;
  }

  .rohaan-theme .ov-item {
    padding: 14px 0;
  }

  .rohaan-theme .ov-icon {
    width: 42px;
    height: 42px;
  }

  .rohaan-theme .ov-icon svg {
    width: 20px;
    height: 20px;
  }

  .rohaan-theme .ov-text h3 {
    font-size: 15px;
  }

  .rohaan-theme .ov-text p {
    font-size: 13px;
  }
}

.rohaan-theme .dark-section {
  background: var(--dark);
  color: var(--white);
}

.rohaan-theme .dark-section .section-title {
  color: var(--white);
}

.rohaan-theme .two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .rohaan-theme .two-col-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .rohaan-theme .about-visual {
    order: -1;
  }

  .rohaan-theme .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .rohaan-theme .section-title {
    font-size: 1.8rem;
  }

  .rohaan-theme .section-padding {
    padding: 3.5rem 0;
  }

  .rohaan-theme .container {
    padding: 0 1.2rem;
  }
}

.rohaan-theme #preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  overflow: hidden;
  transition: all .8s ease;
}

.rohaan-theme #preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.rohaan-theme #preloader::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(57, 170, 224, .18);
  filter: blur(80px);
  animation: pulseGlow 3s infinite ease-in-out;
}

.rohaan-theme .logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rohaan-theme .logo-wrap::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(57, 170, 224, .25);
  filter: blur(25px);
  animation: logoGlow 2s infinite ease-in-out;
}

.rohaan-theme .logo-wrap img {
  position: relative;
  width: 200px;
  height: auto;
  z-index: 2;
  animation:
    floatLogo 3s ease-in-out infinite,
    logoPulse 2s ease-in-out infinite;
  filter:
    drop-shadow(0 0 10px rgba(57, 170, 224, .4)) drop-shadow(0 0 20px rgba(57, 170, 224, .3)) drop-shadow(0 0 35px rgba(57, 170, 224, .2));
}

.rohaan-theme .loader-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.rohaan-theme .loader-content p {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #0f172a;
  opacity: .85;
}

.rohaan-theme .loader-dots {
  margin-top: 20px;
}

.rohaan-theme .loader-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39aae0;
  display: inline-block;
  margin: 0 5px;
  animation: dotBounce 1.4s infinite;
}

.rohaan-theme .loader-dots span:nth-child(2) {
  animation-delay: .2s;
}

.rohaan-theme .loader-dots span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes logoGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: .5;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: .4;
  }

  50% {
    transform: scale(1.2);
    opacity: .8;
  }
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: .4;
  }

  40% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.rohaan-theme .services-slider-section {
  padding: 80px 0;
  background: var(--gray-light);
  overflow: hidden;
}

.rohaan-theme .services-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  position: relative;
}

.rohaan-theme .services-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollServices 35s linear infinite;
}

.rohaan-theme .services-slider:hover .services-track {
  animation-play-state: paused;
}

.rohaan-theme .service-item {
  position: relative;
  width: 380px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
  transition: all .4s ease;
}

.rohaan-theme .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(57, 170, 224, .15);
}

.rohaan-theme .service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}

.rohaan-theme .service-item:hover img {
  transform: scale(1.08);
}

.rohaan-theme .service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 25px;
  background: linear-gradient(to top,
      rgba(15, 23, 42, .95) 0%,
      rgba(15, 23, 42, .55) 45%,
      rgba(15, 23, 42, .15) 100%);
}

.rohaan-theme .service-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.rohaan-theme .service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: rgb(57, 170, 224);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s ease;
}

.rohaan-theme .service-btn:hover {
  background: #fff;
  color: rgb(57, 170, 224);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(57, 170, 224, .25);
}

@keyframes scrollServices {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width:1200px) {
  .rohaan-theme .service-item {
    width: 340px;
    height: 250px;
  }
}

@media (max-width:991px) {
  .rohaan-theme .services-slider-section {
    padding: 70px 0;
  }

  .rohaan-theme .service-item {
    width: 320px;
    height: 230px;
  }

  .rohaan-theme .service-overlay {
    padding: 20px;
  }

  .rohaan-theme .service-overlay h3 {
    font-size: 20px;
  }
}

@media (max-width:768px) {
  .rohaan-theme .services-slider {
    margin-top: 35px;
  }

  .rohaan-theme .services-track {
    gap: 15px;
    animation-duration: 25s;
  }

  .rohaan-theme .service-item {
    width: 85vw;
    max-width: 350px;
    height: 220px;
    border-radius: 16px;
  }

  .rohaan-theme .service-overlay {
    padding: 18px;
  }

  .rohaan-theme .service-overlay h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .rohaan-theme .service-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width:480px) {
  .rohaan-theme .service-item {
    width: 92vw;
    max-width: none;
    height: 220px;
    border-radius: 16px;
  }

  .rohaan-theme .service-overlay {
    padding: 16px;
  }

  .rohaan-theme .service-overlay h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .rohaan-theme .service-btn {
    padding: 7px 15px;
    font-size: 12px;
  }
}

@media (max-width:360px) {
  .rohaan-theme .service-item {
    width: 94vw;
    height: 200px;
  }

  .rohaan-theme .service-overlay h3 {
    font-size: 15px;
  }
}

.rohaan-theme .allied-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 23, 42, .92),
      rgba(15, 23, 42, .92)),
    url('assets/images/allied-bg.png');
  background-size: cover;
  background-position: center;
}

.rohaan-theme .allied-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(57, 170, 224, .12),
      transparent 40%);
}

.rohaan-theme .allied-section .container {
  position: relative;
  z-index: 2;
}

.rohaan-theme .allied-section .section-title {
  color: #fff;
  margin-bottom: 10px;
}

.rohaan-theme .allied-section .section-desc {
  color: rgba(255, 255, 255, .75);
  max-width: 650px;
  margin: auto;
  font-size: 15px;
}

.rohaan-theme .allied-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.rohaan-theme .allied-card {
  background: rgb(255 255 255);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;

  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .35s ease;
}

.rohaan-theme .allied-card:hover {
  transform: translateY(-5px);
  border-color: rgb(57, 170, 224);
  box-shadow: 0 10px 30px rgba(57, 170, 224, .18);
}

.rohaan-theme .allied-card img {
  width: 200%;
  max-width: 202px;
  max-height: 214px;
  object-fit: contain;
  transition: .35s;
}

@media(max-width:991px) {
  .rohaan-theme .allied-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rohaan-theme .allied-card {
    height: 100px;
  }

  .rohaan-theme .allied-card img {
    max-height: 75px;
  }
}

@media(max-width:576px) {
  .rohaan-theme .allied-section {
    padding: 50px 0;
  }

  .rohaan-theme .allied-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .rohaan-theme .allied-card {
    height: 90px;
    border-radius: 12px;
  }

  .rohaan-theme .allied-card img {
    width: 85%;
    max-height: 55px;
  }
}

.rohaan-theme .footer-projects-section {
  background: #071634;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rohaan-theme .footer-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;

  color: #fff;
  font-size: 21px;
  font-weight: 600;
  transition: .3s ease;
}

.rohaan-theme .footer-accordion-btn:hover {
  color: #39AAE0;
}

.rohaan-theme .accordion-arrow {
  width: 18px;
  height: 18px;
  color: #f7a21b;
  transition: transform .4s ease;
  margin-top: 3px;
}

.rohaan-theme .footer-accordion-btn.active .accordion-arrow {
  transform: rotate(180deg);
}

.rohaan-theme .footer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s ease;
}

.rohaan-theme .footer-accordion-content.active {
  max-height: 1500px;
  padding-bottom: 50px;
}

.rohaan-theme .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 20px;
}

.rohaan-theme .footer-group h4 {
  color: #39AAE0;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.rohaan-theme .footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rohaan-theme .footer-group li {
  margin-bottom: 10px;
}

.rohaan-theme .footer-group a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: .3s ease;
  line-height: 1.6;
}

.rohaan-theme .footer-group a:hover {
  color: #39AAE0;
  padding-left: 5px;
}

@media(max-width:992px) {
  .rohaan-theme .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media(max-width:768px) {
  .rohaan-theme .footer-accordion-btn {
    font-size: 24px;
  }

  .rohaan-theme .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}