/* daddycool.css - Additional custom styles for SR Group KSA */
/* These styles work alongside the original template CSS files */

:root {
    --primary: #009ee3;
    --primary-dark: #0077b3;
    --secondary: #0A1E3C;
    --yellow: #0064a7;
    --gray-light: #f8fafc;
    --white: #ffffff;
}

/* Video Banner Section */
.hero-video-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(105deg, rgba(10,30,60,0.85) 0%, rgba(0,158,227,0.7) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #13c0e9, #009ee3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-points {
    margin-top: 15px;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.hero-points span {
    white-space: nowrap;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .badge {
   background: linear-gradient(110deg, #e0f2fe, #bae6fd);
    color: var(--secondary);
    padding: 8px 24px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-top: 20px;
}

.section-header h2 span {
    background: linear-gradient(to right, #285082, #009ee3);
    background-clip: border-box;
  -webkit-background-clip: text;
  color: transparent;
    /* color: var(--primary); */
    /* background: linear-gradient(135deg, #77d6eb, #009ee3); */
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,158,227,0.15);
}

.industry-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #13c0e9, var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

/* Scale Cards */
.scale-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.scale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.scale-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.scale-card-body {
    padding: 25px;
}

.scale-card-body i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Client Logo Slider */
.clients-slider {
    background: var(--gray-light);
    padding: 50px 0;
    overflow: hidden;
}

.client-logo {
    text-align: center;
    padding: 0 20px;
}

.client-logo img {
    max-height: 70px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.75;
    transition: 0.3s;
}

.client-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(115deg, var(--secondary), var(--primary-dark));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.btn-gradient {
    background: linear-gradient(95deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,158,227,0.3);
}

/* Buttons */
.btn-primary-custom {
    /* background: var(--primary); */
     background: linear-gradient(135deg, #77d6eb, #009ee3);
    color: white;
    border-radius: 40px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    color: white;
    /* background: var(--primary-dark); */
      background: linear-gradient(135deg, #77d6eb, #009ee3);
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1.5px solid var(--primary);
    background: transparent;
    border-radius: 40px;
    padding: 8px 24px;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
}

.vision-logo {
    height: 42px;
    margin-left: 12px;
}

/* Footer Additions */
.main-footer {
    background: var(--secondary);
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .vision-logo {
        height: 35px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
}

/* Top Bar Override */
.top-bar {
    background: #005f83;
    padding: 10px 0;
    text-align: center;
}

.top-bar span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.top-bar a {
    background-color: var(--yellow);
    color: #005f83;
    padding: 4px 12px;
    margin-left: 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
}

/* Header Logo */
.logo img {
    height: 50px;
    max-width: 155px;
    object-fit: contain;
}

/* HERO 2 (scoped) */
.sr-hero2 {
  background: radial-gradient(circle at 90% 20%, rgba(37,99,235,0.08) 0%, rgba(15,43,77,0.02) 70%);
  padding: 70px 0 80px;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.sr-hero2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sr-hero2-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.sr-hero2-content {
  flex: 1.2;
}

.sr-hero2-badge {
  background: linear-gradient(110deg, #e0f2fe, #bae6fd);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #075985;
  margin-bottom: 24px;
}

.sr-hero2-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(to right, #0F2B4D, #2563EB);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.sr-hero2-content p {
  font-size: 1.18rem;
  color: #334155;
  max-width: 90%;
  margin-bottom: 32px;
  line-height: 1.5;
}

.sr-hero2-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sr-hero2-btn-primary {
  /* background: #009ee3; */
  background: linear-gradient(135deg, #77d6eb, #009ee3);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
}

.sr-hero2-btn-secondary {
  background: transparent;
  border: 1px solid #009ee3;
  color: #009ee3;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
}

.sr-hero2-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sr-hero2-stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #009ee3, #3b82f6);
  -webkit-background-clip: text;
  color: transparent;
}

.sr-hero2-image {
  flex: 0.9;
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
  border-radius: 48px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--soft-glow);
  border: var(--border-light);
}

.sr-hero2-image i {
  font-size: 6rem;
  color: #2563eb;
  opacity: 0.7;
}


.curved
{
      border-radius: 10% 10% 10% 10% / 10% 10% 10% 10%;
  overflow: hidden; /* important if image inside */
}


.curved2
{
      border-radius: 5% 5% 5% 5%;
  overflow: hidden; /* important if image inside */
}




    .card-hover {
            transition: all 0.25s ease;
            background: var(--gray-light);
            border-radius: 28px;
            padding: 28px;
            box-shadow: var(--soft-shadow);
            height: 100%;
        }
        .card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15); }
        /* big footer */
        .big-footer {
            background: #0A1E3C;
            color: #CBD5E1;
            padding: 64px 0 32px;
            margin-top: 60px;
        }

/* menu */

/* Dropdown Menu Styling */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 10px;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: linear-gradient(110deg, #e0f2fe, #bae6fd);
    color: var(--primary);
    padding-left: 28px;
}

.dropdown-divider {
    margin: 6px 0;
    border-color: rgba(0,158,227,0.1);
}

/* Dropdown toggle caret alignment */
.nav-link.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
}

/* Mobile view adjustments */
@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        margin-top: 0;
        animation: none;
    }
    
    .dropdown-item {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: var(--primary);
        padding-left: 20px;
    }
}


/* Responsive */
@media (max-width: 800px) {
  .sr-hero2-container {
    padding: 0 20px;
  }

  .sr-hero2-content h1 {
    font-size: 2.2rem;
  }
}

/* ── NAVBAR ── */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary) !important;
    padding: 0.5rem 0.8rem;
    transition: 0.2s;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar .btn-primary-custom,
.navbar .btn-outline-custom {
    white-space: nowrap;
    font-size: 13px;
    padding: 7px 16px;
}

/* ── FOOTER ── */
.main-footer {
    background: var(--secondary);
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* ── CLIENT SLIDER SCROLL ── */
.client-scroll-wrap {
    display: flex;
    gap: 40px;
    overflow: hidden;
    padding: 10px 40px;
}

.client-scroll-wrap .client-logo {
    flex-shrink: 0;
}

/* ── PAGE SECTIONS ── */
.page-section { padding:72px 0; }
.page-section.alt { background:#f8fafc; }
@media(max-width:768px){ .page-section { padding:48px 0; } }

/* ── SERVICES PAGE ── */
.svc-item { background:#fff; border-radius:20px; padding:36px; border:1px solid #e8edf4; margin-bottom:24px; transition:.3s; }
.svc-item:hover { box-shadow:0 16px 48px rgba(0,158,227,.1); border-color:rgba(0,158,227,.25); }
.svc-item-head { display:flex; align-items:flex-start; gap:20px; margin-bottom:20px; }
.svc-num { font-size:3.5rem; font-weight:900; color:rgba(0,158,227,.1); line-height:1; flex-shrink:0; width:60px; }
.svc-icon-wrap { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.svc-item-body { flex:1; }
.svc-item-body h3 { font-size:1.25rem; font-weight:800; margin-bottom:8px; }
.svc-item-body p { font-size:.9rem; color:#64748b; line-height:1.7; margin-bottom:16px; }
.svc-badge-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; }
.svc-badge { display:inline-block; padding:4px 12px; border-radius:50px; font-size:.75rem; font-weight:600; border:1px solid #e8edf4; background:#f8fafc; color:#475569; }
.svc-actions { display:flex; gap:12px; flex-wrap:wrap; }
.svc-feat-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:16px; }
.svc-feat-item { display:flex; align-items:center; gap:8px; font-size:.84rem; color:#475569; }
.svc-feat-item i { color:#009ee3; font-size:.8rem; flex-shrink:0; }
.tag-pill { display:inline-block; padding:4px 14px; border-radius:50px; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; }
.tag-blue { background:rgba(0,158,227,.12); color:#009ee3; }
.tag-green { background:rgba(0,160,100,.12); color:#00a064; }
.btn-read-more { display:inline-flex; align-items:center; gap:8px; background:#009ee3; color:#fff; border-radius:50px; padding:10px 22px; font-size:.84rem; font-weight:600; text-decoration:none; transition:.2s; }
.btn-read-more:hover { background:#0077b3; color:#fff; }
.btn-outline-sr { display:inline-flex; align-items:center; gap:8px; border:1.5px solid #009ee3; color:#009ee3; border-radius:50px; padding:9px 20px; font-size:.84rem; font-weight:600; text-decoration:none; transition:.2s; }
.btn-outline-sr:hover { background:#009ee3; color:#fff; }
.highlight-box { background:linear-gradient(135deg,rgba(0,158,227,.06),rgba(0,119,179,.03)); border:1px solid rgba(0,158,227,.15); border-radius:16px; padding:24px 28px; }
.card-white { background:#fff; border-radius:20px; padding:28px; height:100%; box-shadow:0 4px 20px rgba(0,0,0,.06); transition:.3s; border:1px solid #e8edf4; }
.card-white:hover { transform:translateY(-4px); box-shadow:0 16px 36px rgba(0,158,227,.12); border-color:rgba(0,158,227,.25); }
.icon-box { width:56px; height:56px; background:linear-gradient(135deg,rgba(0,158,227,.12),rgba(0,119,179,.06)); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#009ee3; margin-bottom:16px; }
.srg-cta-box { background:linear-gradient(135deg,#0A1E3C 0%,#009ee3 100%); border-radius:20px; padding:56px 40px; }
.check-list { list-style:none; padding:0; margin:0; }
.check-list li { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:.9rem; color:#475569; }
.check-list li i { color:#009ee3; margin-top:2px; flex-shrink:0; }
.process-step { display:flex; gap:16px; align-items:flex-start; padding:16px 0; border-bottom:1px solid #f0f5fa; }
.process-step:last-child { border-bottom:none; }
.process-num { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#009ee3,#0077b3); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.9rem; flex-shrink:0; }
.fw-600 { font-weight:600; }
.card-hover { transition:all .25s ease; background:#f8fafc; border-radius:20px; padding:28px; height:100%; }
.card-hover:hover { transform:translateY(-4px); box-shadow:0 20px 30px -12px rgba(0,0,0,.15); }
.stat-big { font-size:2.8rem; font-weight:900; background:linear-gradient(135deg,#009ee3,#0077b3); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1; }

/* ── FORM CONTROLS (Bootstrap 5 form-select not in local BS4 build) ── */
.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.form-select:disabled {
    background-color: #e9ecef;
}
@media(max-width:768px) {
    .svc-num { display:none; }
    .svc-feat-grid { grid-template-columns:1fr; }
    .srg-cta-box { padding:40px 24px; }
}

/* ── FOOTER SOCIAL ICONS ── */
.footer-social-icon { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.1); color:#fff; transition:background .2s,transform .2s; text-decoration:none; }
.footer-social-icon:hover { background:#009ee3; color:#fff; transform:translateY(-2px); }

/* ── BADGE CHIP ── */
.badge-chip { background:linear-gradient(110deg,#e0f2fe,#bae6fd); color:#075985; padding:6px 18px; border-radius:40px; display:inline-block; font-weight:600; font-size:.85rem; margin-bottom:12px; }
.section-header .badge-chip { margin-bottom:12px; }

/* ── FRAUD ALERT PAGE ── */
.warning-box { background:rgba(229,62,62,.06); border:2px solid #e53e3e; border-radius:16px; padding:28px 32px; margin-bottom:32px; }
.warning-box h5 { color:#c53030; }
.danger-list { list-style:none; padding:0; margin:0; }
.danger-list li { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:.9rem; color:#475569; }
.danger-list li i { margin-top:2px; flex-shrink:0; }
.info-box { background:linear-gradient(135deg,rgba(0,158,227,.06),rgba(0,119,179,.03)); border:1px solid rgba(0,158,227,.2); border-radius:16px; padding:24px 28px; }
.report-box { background:#fff; border:1px solid #e8edf4; border-radius:16px; padding:28px; box-shadow:0 4px 20px rgba(0,0,0,.05); }
.contact-line { display:flex; align-items:center; gap:10px; margin-bottom:12px; font-size:.9rem; }
.contact-line i { width:18px; color:#009ee3; }
.contact-line a { color:#334155; text-decoration:none; }
.contact-line a:hover { color:#009ee3; }