/* ==========================================================================
   Sreekanth Gurthi — Design System
   Apply these classes via Elementor > Advanced > CSS Classes on Containers,
   Widgets, or Sections. Change a color/spacing token once here and it
   updates everywhere on the site — nothing is hardcoded per-widget.
   ========================================================================== */

:root{
  /* Core palette */
  --sg-navy:        #071A3D;
  --sg-navy-soft:   #33455F;
  --sg-blue:        #145BFF;
  --sg-blue-dark:   #0F46C9;
  --sg-cyan:        #16C7D9;
  --sg-violet:      #7C5CFC;
  --sg-white:       #FFFFFF;
  --sg-bg-page:     #FFFFFF;
  --sg-bg-soft:     #F6F9FF;
  --sg-bg-soft-2:   #EAF0FF;
  --sg-border:      #E6ECF5;
  --sg-text:        #071A3D;
  --sg-text-muted:  #55617A;
  --sg-text-faint:  #8593AA;

  /* Gradients — violet stays a subtle secondary accent, not the primary look */
  --sg-grad-primary: linear-gradient(135deg, var(--sg-blue) 0%, var(--sg-violet) 100%);
  --sg-grad-soft:    linear-gradient(135deg, #EAF1FF 0%, #F3EEFF 100%);
  --sg-grad-glow:    radial-gradient(circle, #DCE9FF 0%, rgba(220,233,255,0) 70%);

  /* Elevation — kept very subtle per spec */
  --sg-shadow-sm: 0 2px 8px rgba(7,26,61,0.05);
  --sg-shadow-md: 0 10px 28px rgba(7,26,61,0.08);
  --sg-shadow-lg: 0 20px 50px rgba(7,26,61,0.12);

  /* Radius */
  --sg-radius-sm: 10px;
  --sg-radius-md: 18px;
  --sg-radius-lg: 22px;
  --sg-radius-btn: 9px;

  /* Type — Inter throughout, for both headings and body */
  --sg-font-heading: 'Inter', sans-serif;
  --sg-font-body: 'Inter', sans-serif;

  /* Layout */
  --sg-container-max: 1280px;
  --sg-gutter: 48px;
}
@media (max-width: 1024px){ :root{ --sg-gutter: 30px; } }
@media (max-width: 767px){ :root{ --sg-gutter: 20px; } }

[class^="sg-"], [class*=" sg-"]{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  color: var(--sg-text);
  font-family: var(--sg-font-body);
  background: var(--sg-bg-page);
  font-size:16px;
  line-height:1.65;
}
h1,h2,h3,h4,h5,.sg-heading{
  font-family: var(--sg-font-heading);
  color: var(--sg-navy);
  letter-spacing: -0.015em;
  line-height:1.2;
}

/* ---------- Global centered container ----------
   Every section background can bleed full-width, but its actual row of
   content is capped at --sg-container-max and centered, with responsive
   gutters (48px desktop / 30px tablet / 20px mobile). This is the fix for
   content stretching edge-to-edge with no contained width. */
.sg-header-inner, .sg-hero-row, .sg-grid-6, .sg-grid-4, .sg-grid-5,
.sg-experience-row, .sg-contact-cta-inner, .sg-footer-inner{
  max-width: var(--sg-container-max);
  margin-left:auto; margin-right:auto;
  padding-left: var(--sg-gutter);
  padding-right: var(--sg-gutter);
}

/* ---------- Utility ---------- */
.sg-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--sg-blue);
  margin-bottom:12px;
}
.sg-text-muted{ color:var(--sg-text-muted); }
.sg-blue-word{ color:var(--sg-blue); }
.sg-section-soft{ background:var(--sg-bg-soft); }
.sg-section-white{ background:var(--sg-bg-page); }
.sg-divider-top{ border-top:1px solid var(--sg-border); }

/* Force every icon glyph inside an icon-box wrapper to a small, consistent
   size, regardless of what size Elementor's own Icon widget control resolves
   to (covers both <i class="fa..."> and inline <svg> rendering). */
.sg-metric-icon, .sg-card-icon, .sg-highlight-icon, .sg-insight-icon, .sg-cert-chip{
  overflow:hidden;
}
.sg-metric-icon i, .sg-card-icon i, .sg-highlight-icon i, .sg-insight-icon i, .sg-cert-chip i,
.sg-metric-icon svg, .sg-card-icon svg, .sg-highlight-icon svg, .sg-insight-icon svg, .sg-cert-chip svg{
  font-size:22px !important;
  width:22px !important;
  height:22px !important;
  line-height:1 !important;
  fill:currentColor;
}
.sg-highlight-icon i, .sg-highlight-icon svg,
.sg-cert-chip i, .sg-cert-chip svg{
  font-size:15px !important;
  width:15px !important;
  height:15px !important;
}
.sg-metric-icon .elementor-widget-container,
.sg-card-icon .elementor-widget-container,
.sg-highlight-icon .elementor-widget-container,
.sg-insight-icon .elementor-widget-container,
.sg-cert-chip .elementor-widget-container{
  display:flex !important;
  align-items:center;
  justify-content:center;
  width:100%; height:100%;
  margin:0 !important;
}

/* subtle dotted-grid / network background */
.sg-bg-dots{
  background-image: radial-gradient(circle, #C9D9F2 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  background-position: 0 0;
}
.sg-bg-lines{ position:relative; overflow:hidden; }
.sg-bg-lines::before{
  content:"";
  position:absolute; inset:-10%;
  background:
    radial-gradient(circle at 15% 20%, rgba(20,91,255,0.08), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(124,92,252,0.08), transparent 40%);
  pointer-events:none;
  z-index:0;
}
.sg-bg-lines > *{ position:relative; z-index:1; }

/* ---------- Buttons ----------
   Elementor's own Kit default "Accent" global color (often a green) can
   win a plain class-vs-class specificity fight against a theme stylesheet
   depending on load order. These selectors deliberately over-qualify
   (element + multiple class permutations Elementor is known to render
   button markup with) so our color wins regardless of that load order. */
html body .sg-btn-primary,
html body a.sg-btn-primary,
html body .sg-btn-primary .elementor-button,
html body .sg-btn-primary a.elementor-button,
html body .sg-btn-primary .elementor-button-link{
  background-color: var(--sg-blue) !important;
  background: var(--sg-blue) !important;
  border:none !important;
  color:#fff !important;
  fill:#fff !important;
  border-radius: var(--sg-radius-btn) !important;
  font-weight:600 !important;
  font-size:15.5px !important;
  padding:14px 22px !important;
  box-shadow: 0 8px 20px rgba(20,91,255,0.22) !important;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
html body .sg-btn-primary:hover,
html body .sg-btn-primary .elementor-button:hover,
html body .sg-btn-primary a.elementor-button:hover{
  background-color: var(--sg-blue-dark) !important;
  background: var(--sg-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20,91,255,0.3) !important;
}
html body .sg-btn-secondary,
html body a.sg-btn-secondary,
html body .sg-btn-secondary .elementor-button,
html body .sg-btn-secondary a.elementor-button,
html body .sg-btn-secondary .elementor-button-link{
  background-color:#fff !important;
  background:#fff !important;
  border:1.5px solid var(--sg-blue) !important;
  color: var(--sg-blue) !important;
  fill: var(--sg-blue) !important;
  border-radius: var(--sg-radius-btn) !important;
  font-weight:600 !important;
  font-size:15.5px !important;
  padding:14px 22px !important;
  transition: background-color .25s ease, transform .25s ease;
}
html body .sg-btn-secondary:hover,
html body .sg-btn-secondary .elementor-button:hover{
  background-color: var(--sg-bg-soft-2) !important;
  background: var(--sg-bg-soft-2) !important;
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.sg-header{
  background:#fff;
  border-bottom:1px solid var(--sg-border);
}
.sg-header-inner{ display:flex !important; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; padding-top:16px; padding-bottom:16px; }
.sg-header-right{ display:flex !important; align-items:center; gap:18px; flex:0 0 auto; }
.sg-logo-block{ display:flex !important; flex-direction:column; gap:1px; flex:0 0 auto; }
/* The nav lives inside an Elementor HTML widget. Elementor gives a
   Container's flex children a default basis sized to their own content,
   not "grow to fill the row" — without this the nav's wrapper stays
   narrow and its links wrap into several lines even though the header has
   plenty of spare width to its right. */
.sg-header-inner > .elementor-widget-html,
.sg-footer-top > .elementor-widget-html{
  flex:1 1 auto !important;
  min-width:0 !important;
}
.sg-header-inner .elementor-widget-html .elementor-widget-container{ width:100%; }
.sg-header .sg-logo-name{
  font-family: var(--sg-font-heading);
  font-weight:800;
  font-size:21px;
  color:var(--sg-navy);
  line-height:1.15;
}
.sg-header .sg-logo-sub{
  font-size:12.5px;
  font-weight:600;
  color:var(--sg-blue);
  letter-spacing:.02em;
}
.sg-nav{ display:flex !important; gap:26px; align-items:center; justify-content:center; flex-wrap:nowrap; width:100%; }
.sg-nav a{ color:var(--sg-navy-soft); font-weight:600; font-size:15px; text-decoration:none; white-space:nowrap; }
.sg-nav a:hover{ color:var(--sg-blue); }
@media (max-width: 1024px){
  .sg-header .sg-nav{ display:none !important; }
  .sg-footer .sg-nav{ flex-wrap:wrap; justify-content:flex-start; }
}
.sg-header .elementor-nav-menu a{
  color: var(--sg-navy-soft) !important;
  font-weight:600 !important;
  font-size:15px !important;
}
.sg-header .elementor-nav-menu a:hover,
.sg-header .elementor-item-active{
  color: var(--sg-blue) !important;
}

/* ---------- Hero ---------- */
.sg-hero{
  padding-bottom: 12px;
  background:
    radial-gradient(circle, #DCE8FF 1px, transparent 1px),
    linear-gradient(180deg, #FBFDFF 0%, #FFFFFF 100%);
  background-size: 26px 26px, 100% 100%;
}
.sg-hero-row{ display:flex !important; align-items:center; gap:56px; padding-top:104px; padding-bottom:64px; }
.sg-hero-left{ flex:1 1 54%; min-width:300px; }
.sg-hero-right{ flex:1 1 40%; min-width:300px; display:flex !important; flex-direction:column; align-items:center; gap:24px; }
@media (max-width: 1024px){
  .sg-hero-row{ padding-top:80px; padding-bottom:48px; gap:40px; }
}
@media (max-width: 767px){
  .sg-hero-row{ flex-direction:column; padding-top:48px; padding-bottom:36px; }
  .sg-hero-left, .sg-hero-right{ flex:1 1 100%; }
}

.sg-hero-eyebrow{ font-size:13px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--sg-blue); }
.sg-hero-headline{
  font-size:38px;
  line-height:1.1;
  font-weight:800;
  color:var(--sg-navy);
  margin:14px 0 0;
}
@media (min-width: 768px){ .sg-hero-headline{ font-size:50px; } }
@media (min-width: 1025px){ .sg-hero-headline{ font-size:64px; } }
.sg-hero-headline .sg-blue-word{ color:var(--sg-blue); }
.sg-hero-desc{ color:var(--sg-text-muted); font-size:17px; max-width:540px; margin-top:18px; line-height:1.7; }
@media (min-width: 1025px){ .sg-hero-desc{ font-size:18px; } }
.sg-hero-buttons{ display:flex !important; gap:16px; margin-top:30px; flex-wrap:wrap; }

/* portrait treatment: transparent-background cutout floating on a soft
   light-blue glow. The image file itself is untouched pixels; every visual
   effect here (glow, shadow, edge fade, sizing) is applied live by the browser. */
.sg-portrait-wrap{
  position:relative;
  display:flex;
  justify-content:center;
  padding: 6% 0 0;
  width:100%;
}
.sg-portrait-wrap::before{
  content:"";
  position:absolute;
  width:112%; height:112%;
  top:-4%; left:-6%;
  background: var(--sg-grad-glow);
  border-radius:50%;
  z-index:0;
}
.sg-portrait-wrap::after{
  content:"";
  position:absolute;
  width:60%; height:9%;
  left:20%; bottom:4%;
  background: radial-gradient(ellipse, rgba(7,26,61,0.16) 0%, rgba(7,26,61,0) 72%);
  z-index:0;
  border-radius:50%;
}
.sg-portrait-wrap .elementor-widget-image,
.sg-portrait-wrap img{
  position:relative;
  z-index:1;
  filter: drop-shadow(0 18px 30px rgba(7,26,61,0.18));
  width:260px;
  max-width:88%;
  height:auto;
}
@media (min-width: 768px){
  .sg-portrait-wrap .elementor-widget-image, .sg-portrait-wrap img{ width:340px; }
}
@media (min-width: 1025px){
  .sg-portrait-wrap .elementor-widget-image, .sg-portrait-wrap img{ width:400px; }
}

/* Technology -> Growth flow diagram (used inside an HTML widget) */
.sg-flow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  padding:8px 0;
}
.sg-flow-node{ display:flex; flex-direction:column; align-items:center; gap:8px; min-width:76px; }
.sg-flow-node .sg-flow-circle{
  width:56px; height:56px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#fff;
  border:1.5px solid var(--sg-border);
  color: var(--sg-blue);
  box-shadow: var(--sg-shadow-sm);
  font-size:20px;
}
.sg-flow-node.sg-flow-final .sg-flow-circle{
  background: var(--sg-grad-primary);
  border:none;
  color:#fff;
  box-shadow: 0 10px 26px rgba(124,92,252,0.35);
  transform: scale(1.12);
}
.sg-flow-node span{ font-size:12.5px; font-weight:600; color: var(--sg-navy-soft); white-space:nowrap; }
.sg-flow-connector{
  width:28px; height:1.5px;
  background: linear-gradient(90deg, var(--sg-border), var(--sg-blue));
  margin-bottom:22px;
}
@media (max-width: 767px){
  .sg-flow{ gap:2px; }
  .sg-flow-connector{ width:14px; }
  .sg-flow-node{ min-width:58px; }
  .sg-flow-node .sg-flow-circle{ width:44px; height:44px; font-size:16px; }
}

/* ---------- Metrics strip ---------- */
.sg-metrics{
  background:#fff;
  border:1px solid var(--sg-border);
  border-radius: var(--sg-radius-lg);
  box-shadow: var(--sg-shadow-md);
  padding: 32px 40px;
  display:flex !important;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:24px;
  max-width: var(--sg-container-max);
  width:calc(100% - (2 * var(--sg-gutter)));
  margin:0 auto;
}
.sg-metric-item{ display:flex !important; align-items:center; gap:16px; flex:1 1 0; min-width:170px; }
@media (min-width: 1025px){
  .sg-metric-item{ border-right:1px solid var(--sg-border); padding-right:24px; }
  .sg-metric-item:last-child{ border-right:none; padding-right:0; }
}
.sg-metric-text{ display:flex !important; flex-direction:column; gap:3px; }
.sg-metric-icon{
  width:48px; height:48px;
  border-radius:12px;
  background: var(--sg-bg-soft-2);
  display:flex; align-items:center; justify-content:center;
  color: var(--sg-blue);
  flex-shrink:0;
}
.sg-metric-number{
  font-family: var(--sg-font-heading);
  font-weight:800;
  font-size:34px;
  color:var(--sg-navy);
  line-height:1;
}
.sg-metric-label{ font-size:13px; color:var(--sg-text-muted); line-height:1.4; }
@media (max-width: 1024px){ .sg-metrics{ padding:24px; } }
@media (max-width: 767px){ .sg-metrics{ padding:22px 20px; } }

/* ---------- Cards (Expertise / general) ---------- */
.sg-card{
  background:#fff;
  border:1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding: 32px 28px;
  box-shadow: var(--sg-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:100%;
  display:flex !important;
  flex-direction:column !important;
}
.sg-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--sg-shadow-md);
  border-color:#D2E0FA;
}
.sg-card-icon{
  width:52px; height:52px;
  border-radius:13px;
  display:flex; align-items:center; justify-content:center;
  background: var(--sg-grad-soft);
  margin-bottom:18px;
}
.sg-card h3{ font-size:22px; margin:0 0 12px; }
.sg-card ul{ margin:0; padding:0; list-style:none; }
.sg-card ul li{ font-size:15px; color:var(--sg-text-muted); padding:6px 0 6px 18px; position:relative; }
.sg-card ul li::before{
  content:"";
  position:absolute; left:0; top:15px;
  width:6px; height:6px;
  border-radius:50%;
  background: var(--sg-blue);
  opacity:.6;
}

/* ---------- Project / Venture cards ---------- */
.sg-project-card{
  background:#fff;
  border:1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  overflow:hidden;
  box-shadow: var(--sg-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  height:100%;
  display:flex !important;
  flex-direction:column !important;
}
.sg-project-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--sg-shadow-lg);
}
.sg-project-visual{
  height:180px;
  display:flex !important; align-items:center; justify-content:center;
  background: var(--sg-grad-soft);
  flex-shrink:0;
}
.sg-project-body{ padding:24px 24px 26px; display:flex !important; flex-direction:column !important; }
.sg-project-body h3{ font-size:21px; margin:2px 0 8px; }
.sg-project-body p{ font-size:15px; color:var(--sg-text-muted); line-height:1.6; margin:0 0 12px; }
.sg-badge{
  display:inline-block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.02em;
  padding:5px 12px;
  border-radius:999px;
  background: var(--sg-bg-soft-2);
  color: var(--sg-blue);
  margin-bottom:12px;
}
.sg-role-label{ font-size:13.5px; font-weight:600; color:var(--sg-navy-soft); margin: 8px 0 14px; }
.sg-tag-row{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.sg-tag{
  font-size:11.5px;
  padding:4px 10px;
  border-radius:999px;
  background:var(--sg-bg-soft);
  color:var(--sg-text-muted);
  border:1px solid var(--sg-border);
}
.sg-project-link{ font-size:14.5px; font-weight:700; color: var(--sg-blue); text-decoration:none; }
.sg-project-link:hover{ text-decoration:underline; }

/* SHY Group gets the strongest visual (dark gradient hero tile + glow on hover) */
.sg-project-card.sg-project-featured{ border-color:#D9E0F7; }
.sg-project-card.sg-project-featured .sg-project-visual{
  background: linear-gradient(135deg, #0A1B45 0%, #16296E 55%, #3B2E86 100%);
}
.sg-project-card.sg-project-featured:hover{
  box-shadow: 0 20px 50px rgba(20,91,255,0.18), var(--sg-shadow-lg);
}

/* AI Product Automation workflow mini-diagram */
.sg-workflow{ display:flex; align-items:center; justify-content:center; gap:6px; flex-wrap:wrap; padding:0 14px; }
.sg-workflow-step{
  background:#fff;
  border:1px solid var(--sg-border);
  border-radius:8px;
  padding:6px 9px;
  font-size:10.5px;
  font-weight:600;
  color:var(--sg-navy-soft);
  box-shadow: var(--sg-shadow-sm);
}
.sg-workflow-arrow{ color: var(--sg-text-faint); font-size:13px; }

/* ---------- Timeline (Professional Experience) ---------- */
.sg-timeline{ position:relative; padding-left:52px; display:flex !important; flex-direction:column !important; }
.sg-timeline::before{
  content:"";
  position:absolute; left:18px; top:6px; bottom:6px;
  width:2px;
  background: linear-gradient(180deg, var(--sg-blue), var(--sg-border));
}
.sg-timeline-item{ position:relative; padding-bottom:38px; display:flex !important; flex-direction:column !important; gap:3px; }
.sg-timeline-item:last-child{ padding-bottom:0; }
.sg-timeline-badge{
  position:absolute; left:-52px; top:0;
  width:38px; height:38px;
  border-radius:11px;
  background: var(--sg-bg-soft-2);
  color: var(--sg-blue);
  display:flex; align-items:center; justify-content:center;
  font-size:11.5px; font-weight:800;
  border:2px solid #fff;
  box-shadow:0 0 0 2px var(--sg-border);
}
.sg-timeline-top{ display:flex !important; justify-content:space-between; align-items:baseline; flex-wrap:wrap; gap:8px; }
.sg-timeline-role{ font-size:20px; font-weight:700; color:var(--sg-navy); margin:0; }
.sg-timeline-company{ font-size:15px; font-weight:600; color:var(--sg-blue); margin:2px 0 0; }
.sg-timeline-dates{ font-size:13.5px; color:var(--sg-text-faint); font-weight:600; white-space:nowrap; }
.sg-timeline-desc{ font-size:15.5px; color:var(--sg-text-muted); line-height:1.65; margin:8px 0 12px; }

/* ---------- Sidebar cards (Career Highlights / Education / Certifications) ---------- */
.sg-sidebar-card{
  background:#fff;
  border:1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding:26px;
  box-shadow: var(--sg-shadow-sm);
  display:flex !important;
  flex-direction:column !important;
}
.sg-sidebar-card h3{ font-size:17px; margin:0 0 18px; }
.sg-highlight-item{ display:flex !important; gap:13px; margin-bottom:16px; align-items:flex-start; }
.sg-highlight-item:last-child{ margin-bottom:0; }
.sg-highlight-icon{
  width:32px; height:32px; flex-shrink:0;
  border-radius:9px;
  background: var(--sg-bg-soft-2);
  color:var(--sg-blue);
  display:flex; align-items:center; justify-content:center;
}
.sg-highlight-text{ font-size:14.5px; color:var(--sg-text-muted); line-height:1.55; }

.sg-edu-item{ display:flex !important; gap:13px; margin-bottom:18px; }
.sg-edu-item:last-child{ margin-bottom:0; }
.sg-edu-text{ display:flex !important; flex-direction:column !important; gap:2px; }
.sg-edu-degree{ font-size:15px; font-weight:700; color:var(--sg-navy); }
.sg-edu-school{ font-size:13.5px; color:var(--sg-text-muted); }

.sg-cert-grid{ display:flex !important; flex-wrap:wrap; gap:10px; }
.sg-cert-chip{
  width:44px; height:44px;
  border-radius:10px;
  background: var(--sg-bg-soft-2);
  display:flex !important; align-items:center; justify-content:center;
  color: var(--sg-blue);
}

/* ---------- Insights cards ---------- */
.sg-insight-card{
  background:#fff;
  border:1px solid var(--sg-border);
  border-radius: var(--sg-radius-md);
  padding:22px 20px 20px;
  box-shadow: var(--sg-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  height:100%;
  display:flex !important;
  flex-direction:column !important;
}
.sg-insight-card:hover{ transform: translateY(-4px); box-shadow: var(--sg-shadow-md); }
.sg-insight-icon{
  width:40px; height:40px;
  border-radius:10px;
  background: var(--sg-grad-soft);
  color: var(--sg-blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.sg-insight-title{ font-size:15.5px; font-weight:700; color:var(--sg-navy); line-height:1.4; margin:0; }
.sg-insight-status{ font-size:12px; color:var(--sg-text-faint); margin-top:9px; font-style:italic; }

/* ---------- Contact CTA ---------- */
.sg-contact-wrap{ padding-top:0; padding-bottom:0; }
.sg-contact-cta{
  background: var(--sg-grad-soft);
  border-radius: var(--sg-radius-lg);
  padding: 48px;
  max-width: var(--sg-container-max);
  width:calc(100% - (2 * var(--sg-gutter)));
  margin:0 auto;
}
.sg-contact-cta-inner{ display:flex !important; justify-content:space-between; align-items:center; gap:36px; flex-wrap:wrap; max-width:none; padding:0; margin:0; }
.sg-contact-cta h2{ font-size:32px; }
.sg-contact-left{ flex:1 1 56%; min-width:280px; display:flex !important; align-items:center !important; gap:22px; }
.sg-contact-text{ display:flex !important; flex-direction:column !important; gap:10px; min-width:0; }
.sg-contact-text p{ font-size:16.5px; color:var(--sg-text-muted); line-height:1.65; }
.sg-contact-photo-wrap{ flex:0 0 auto; }
.sg-contact-photo-wrap .elementor-widget-container{ display:flex; }
.sg-contact-photo, .sg-contact-photo img{
  width:64px !important; height:64px !important; border-radius:50% !important;
  object-fit:cover; object-position:top center;
  border:3px solid #fff; box-shadow:var(--sg-shadow-sm);
  overflow:hidden;
}
@media (max-width: 767px){
  .sg-contact-left{ flex-direction:column; align-items:flex-start !important; }
}
.sg-contact-row{ display:flex !important; gap:28px; flex-wrap:wrap; margin:22px 0 4px; }
.sg-contact-item{ display:flex; align-items:center; gap:10px; font-size:15px; color:var(--sg-navy-soft); font-weight:600; }
.sg-contact-buttons{ display:flex !important; gap:14px; flex-wrap:wrap; flex:0 0 auto; }
@media (max-width: 767px){
  .sg-contact-cta{ padding:30px 22px; }
  .sg-contact-cta-inner{ flex-direction:column; align-items:flex-start; }
}

/* ---------- Footer ---------- */
.sg-footer{ background: var(--sg-navy); color:#C6D1E6; }
.sg-footer a{ color:#C6D1E6; text-decoration:none; }
.sg-footer a:hover{ color: var(--sg-cyan); }
.sg-footer .sg-logo-name{ color:#fff; }
.sg-footer-inner{ display:flex !important; flex-direction:column; gap:24px; padding-top:48px; padding-bottom:28px; }
.sg-footer-top{ display:flex !important; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:18px; }
.sg-footer-bottom{ display:flex !important; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; border-top:1px solid rgba(255,255,255,.14); padding-top:22px; font-size:12.5px; color:#8FA0BF; }
.sg-footer .sg-nav a{ color:#C6D1E6; }
.sg-footer .sg-nav a:hover{ color: var(--sg-cyan); }
.sg-footer-brand{ display:flex !important; align-items:center !important; gap:14px; flex:0 0 auto; }
.sg-footer-brand-text{ display:flex !important; flex-direction:column !important; gap:3px; }
.sg-footer-sub{ font-size:12.5px; color:#8FA0BF; }
.sg-footer-photo-wrap{ flex:0 0 auto; }
.sg-footer-photo-wrap .elementor-widget-container{ display:flex; }
.sg-footer-photo, .sg-footer-photo img{
  width:44px !important; height:44px !important; border-radius:50% !important;
  object-fit:cover; object-position:top center; overflow:hidden;
}

/* ==========================================================================
   Section rhythm + grid layouts
   ========================================================================== */
.sg-section{ padding:96px 0; }
.sg-section-header{ max-width:680px; margin:0 auto 44px; text-align:center; }
.sg-section-header.sg-align-left{ margin:0 0 44px; text-align:left; }
.sg-section-header h2{ font-size:30px; }
@media (min-width: 768px){ .sg-section-header h2{ font-size:36px; } }
@media (min-width: 1025px){ .sg-section-header h2{ font-size:42px; } }
.sg-section-header p{ font-size:17px; color:var(--sg-text-muted); margin-top:12px; }

.sg-grid-6, .sg-grid-4{ display:grid !important; gap:26px; }
.sg-grid-6{ grid-template-columns:repeat(3,1fr); }
.sg-grid-4{ grid-template-columns:repeat(4,1fr); }
.sg-grid-5{ display:grid !important; grid-template-columns:repeat(5,1fr); gap:18px; }

@media (max-width: 1024px){
  .sg-grid-6{ grid-template-columns:repeat(2,1fr); }
  .sg-grid-4{ grid-template-columns:repeat(2,1fr); }
  .sg-grid-5{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 767px){
  .sg-grid-6, .sg-grid-4, .sg-grid-5{ grid-template-columns:1fr; }
}

.sg-experience-row{ display:flex !important; gap:44px; align-items:flex-start; }
.sg-experience-main{ flex:1 1 68%; min-width:300px; }
.sg-experience-side{ flex:1 1 30%; min-width:280px; display:flex !important; flex-direction:column; gap:22px; }
@media (max-width: 1024px) and (min-width: 768px){
  .sg-experience-main{ flex-basis:62%; }
  .sg-experience-side{ flex-basis:35%; }
}
@media (max-width: 767px){
  .sg-experience-row{ flex-direction:column; }
}

@media (max-width: 767px){
  .sg-section{ padding:56px 0; }
  .sg-timeline{ padding-left:46px; }
  .sg-timeline-badge{ left:-46px; width:32px; height:32px; font-size:10px; }
  .sg-timeline::before{ left:15px; }
}
@media (min-width: 768px) and (max-width: 1024px){
  .sg-section{ padding:72px 0; }
}
