/* main.css *//************************************************************* * 1) BASIC GLOBAL STYLES & RESETS *************************************************************/*{scrollbar-width:thin;scrollbar-color:#555555 #333333;box-sizing:border-box;}::-webkit-scrollbar{width:12px;}::-webkit-scrollbar-track{background:#333333;}::-webkit-scrollbar-thumb{background-color:#555555;border-radius:6px;border:3px solid #333333;}::-webkit-scrollbar-thumb:hover{background-color:#777777;}/************************************************************* * 2) GLOBAL BODY,FONT,COLORS & MODES *************************************************************/body{font-family:Arial,sans-serif;font-size:16px;margin:0;padding:0;color:#fff;background:#000;display:flex;flex-direction:column;min-height:100vh;overflow:auto;transition:background 0.3s,color 0.3s;}.dark-mode{background:#000;color:#fff;}.light-mode{background:#fff;color:#000;}/************************************************************* * 3) CONTAINER & CONTENT *************************************************************/.container{flex:1;width:100%;max-width:1100px;margin:0 auto;padding:15px;}.content{margin-top:10px;margin-bottom:25px;width:100%;}.h3-heading{font-size:20px;font-weight:600;padding-top:15px;margin-bottom:8px;color:white;/* fallback default */}/* Light mode override */body.light-mode .h3-heading{color:#000 !important;}/* Dark mode override (optional if default is white) */body.dark-mode .h3-heading{color:white;}/************************************************************* * 3.1) BLOG *************************************************************//* Stylized inline DNS A record snippet */.dns-snippet{background-color:#1c1c1c;border:1px solid #333;border-radius:6px;padding:12px 16px;font-family:'Courier New',monospace;font-size:14px;color:#FFFFFF;margin:20px 0;white-space:pre-wrap;word-break:break-word;}/* Blog article image */.article-image{margin:30px 0;text-align:center;}.article-image img{max-width:300px;height:auto;border-radius:8px;border:1px solid #444;box-shadow:0 0 10px rgba(0,0,0,0.3);}/* Float image left with text wrap,responsive on mobile */.article-image-float{display:flow-root;margin:20px 0;}.article-image-float img{float:left;margin:0 20px 10px 0;max-width:300px;height:auto;border-radius:8px;border:1px solid #444;box-shadow:0 0 10px rgba(0,0,0,0.3);}/* Stack image and text vertically on small screens */@media (max-width:768px){.article-image-float img{float:none;display:block;margin:0 auto 15px auto;}}/************************************************************* * 4) NAVIGATION BAR & LOGO *************************************************************/.nav-menu{position:fixed;top:0;width:100%;display:flex;justify-content:flex-start;align-items:center;gap:0;padding:19px 20px;background-color:rgba(0,0,0,0);backdrop-filter:blur(0px);box-shadow:0 2px 12px rgba(0,0,0,0);transition:background-color 0.3s ease,backdrop-filter 0.3s ease,box-shadow 0.3s ease;z-index:1300;line-height:1;}.nav-menu.scrolled{background-color:rgba(0,0,0,0.95);backdrop-filter:blur(10px);box-shadow:0 2px 12px rgba(0,0,0,0.3);}body.light-mode .nav-menu{background-color:rgba(255,255,255,1) !important;backdrop-filter:blur(10px) !important;box-shadow:0 2px 8px rgba(0,0,0,0.1) !important;}body.light-mode .nav-menu.scrolled{background-color:rgba(255,255,255,1) !important;backdrop-filter:blur(10px) !important;box-shadow:0 2px 8px rgba(0,0,0,0.1) !important;}body.dark-mode .nav-menu{background-color:rgba(0,0,0,0);backdrop-filter:blur(0px);box-shadow:0 2px 12px rgba(0,0,0,0);}body.dark-mode .nav-menu.scrolled{background-color:rgba(0,0,0,0.95);backdrop-filter:blur(10px);box-shadow:0 2px 12px rgba(0,0,0,0.3);}.nav-menu .mode-switch{display:flex;align-items:center;gap:16px;margin:0;padding:0;flex-shrink:0;align-self:center;}.nav-menu .menu-icon{margin-left:auto;flex-shrink:0;}.nav-brand-link{display:flex;align-items:center;text-decoration:none;color:inherit;transition:opacity 0.2s ease;}.nav-brand-link:hover{opacity:0.85;}.nav-logo{max-width:30px;height:auto;display:block;flex-shrink:0;align-self:center;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.3));}body.light-mode .nav-logo{filter:none;}body.dark-mode .nav-logo{filter:drop-shadow(0 1px 3px rgba(0,0,0,0.5));}.nav-links{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-left:24px;margin-right:50px;flex-grow:0;flex-shrink:0;}.nav-menu .nav-links a,.menu-icon{color:#fff;text-decoration:none;font-size:15px;font-weight:500;margin:0;transition:all 0.3s ease;padding:8px 12px;position:relative;text-shadow:0 1px 2px rgba(0,0,0,0.3);}.nav-menu .nav-links a:hover,.menu-icon:hover{color:#26c4ff;transform:translateY(-1px);text-shadow:0 1px 2px rgba(0,0,0,0.2);}body.light-mode .nav-menu .nav-links a,body.light-mode .menu-icon{color:#000 !important;text-shadow:none !important;}body.light-mode .nav-menu .nav-links a:hover,body.light-mode .menu-icon:hover{color:#0054ff !important;text-shadow:none !important;}body.light-mode .nav-menu .nav-links a::after{background:#0054ff;}body.dark-mode .nav-menu .nav-links a,body.dark-mode .menu-icon{color:#fff !important;text-shadow:0 1px 3px rgba(0,0,0,0.5) !important;}body.dark-mode .nav-menu .nav-links a:hover,body.dark-mode .menu-icon:hover{color:#26c4ff !important;text-shadow:0 1px 3px rgba(0,0,0,0.4) !important;}body.dark-mode .nav-menu .nav-links a::after{background:#26c4ff;}.nav-menu .nav-links a::after{content:'';position:absolute;bottom:4px;left:12px;width:0;height:2px;background:#26c4ff;transition:width 0.3s ease;}.nav-menu .nav-links a:hover::after{width:calc(100% - 24px);}.menu-icon{cursor:pointer;font-size:28px;color:#fff;padding:10px 12px;transition:all 0.2s ease;display:flex;align-items:center;justify-content:center;align-self:center;user-select:none;-webkit-user-select:none;pointer-events:auto;z-index:1300;position:relative;min-width:44px;min-height:44px;box-sizing:border-box;line-height:1;}.menu-icon:hover{transform:scale(1.1);}.plain-link{color:inherit;text-decoration:none;}.plain-link:hover,.plain-link:focus{color:inherit;text-decoration:none;cursor:pointer;}.light-mode .plain-link{color:inherit;}/************************************************************* * NAV DROPDOWN STYLES *************************************************************/.nav-dropdown{position:relative;display:inline-block;}.nav-dropdown-toggle{display:flex;align-items:center;gap:4px;cursor:pointer;color:#fff;text-decoration:none;font-size:15px;font-weight:500;padding:8px 12px;transition:all 0.3s ease;text-shadow:0 1px 2px rgba(0,0,0,0.3);}.nav-dropdown-toggle::after{content:'▾';font-size:10px;transition:transform 0.2s ease;}.nav-dropdown:hover .nav-dropdown-toggle::after{transform:rotate(180deg);}.nav-dropdown-toggle:hover{color:#26c4ff;}body.light-mode .nav-dropdown-toggle{color:#000 !important;text-shadow:none !important;}body.light-mode .nav-dropdown-toggle:hover{color:#0054ff !important;}.nav-dropdown-menu{position:absolute;top:100%;left:0;min-width:220px;background:linear-gradient(135deg,#191919 0%,#333333 100%);border:1px solid rgba(255,255,255,0.1);border-radius:8px;box-shadow:0 8px 32px rgba(0,0,0,0.5);opacity:0;visibility:hidden;transform:translateY(10px);transition:all 0.2s ease;z-index:1000;padding:8px 0;}.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);}.nav-dropdown-menu a{display:block;padding:10px 16px;color:#fff !important;text-decoration:none;font-size:14px;font-weight:400;transition:all 0.2s ease;text-shadow:none !important;}.nav-dropdown-menu a::after{display:none !important;}.nav-dropdown-menu a:hover{background:rgba(38,196,255,0.15);color:#26c4ff !important;padding-left:20px;}.nav-dropdown-menu .dropdown-divider{height:1px;background:rgba(255,255,255,0.1);margin:6px 12px;}.nav-dropdown-menu .dropdown-section-header{display:block;padding:8px 16px 4px;color:#26c4ff !important;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;pointer-events:none;}body.light-mode .nav-dropdown-menu{background:linear-gradient(135deg,#ffffff 0%,#f5f5f5 100%);border:1px solid rgba(0,0,0,0.1);box-shadow:0 8px 32px rgba(0,0,0,0.15);}body.light-mode .nav-dropdown-menu a{color:#1a1a1a !important;}body.light-mode .nav-dropdown-menu a:hover{background:rgba(0,84,255,0.1);color:#0054ff !important;}body.light-mode .nav-dropdown-menu .dropdown-divider{background:rgba(0,0,0,0.1);}body.light-mode .nav-dropdown-menu .dropdown-section-header{color:#0054ff !important;}@media (max-width:1024px){.nav-dropdown{display:none;}}/************************************************************* * FLYOUT MENU - MODERN SLIDE-IN NAVIGATION *************************************************************//* Backdrop - overlays entire page when menu is open */.flyout-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,0.7);backdrop-filter:blur(4px);opacity:0;visibility:hidden;pointer-events:none;transition:opacity 0.35s cubic-bezier(0.4,0,0.2,1),visibility 0.35s cubic-bezier(0.4,0,0.2,1);z-index:1100;cursor:pointer;}.flyout-backdrop.open{opacity:1;visibility:visible;pointer-events:auto;}/* Flyout Menu Panel */.flyout-menu{-webkit-overflow-scrolling:touch;overscroll-behavior:contain;position:fixed;top:0;right:0;width:320px;height:100vh;background:#1a1a1a;border-left:1px solid rgba(255,255,255,0.1);box-shadow:-8px 0 40px rgba(0,0,0,0.8);padding:80px 24px 24px 24px;overflow-y:auto;overflow-x:hidden;transform:translateX(100%);transition:transform 0.35s cubic-bezier(0.4,0,0.2,1);z-index:1200;display:flex;flex-direction:column;gap:4px;}.flyout-menu.open{transform:translateX(0);}/* Light mode styling */body.light-mode .flyout-menu{-webkit-overflow-scrolling:touch;overscroll-behavior:contain;background:#ffffff !important;border-left:1px solid rgba(0,0,0,0.12) !important;box-shadow:-8px 0 40px rgba(0,0,0,0.15) !important;}/* Dark mode styling */body.dark-mode .flyout-menu{-webkit-overflow-scrolling:touch;overscroll-behavior:contain;background:#1a1a1a !important;border-left:1px solid rgba(255,255,255,0.1) !important;box-shadow:-8px 0 40px rgba(0,0,0,0.8) !important;}/* Menu Links */.flyout-menu a{display:block;color:#ffffff;padding:13px 16px;font-size:15px;font-weight:500;text-decoration:none;border-radius:10px;margin-bottom:0;transition:all 0.25s cubic-bezier(0.4,0,0.2,1);cursor:pointer;line-height:1.3;position:relative;overflow:hidden;}.flyout-menu a::before{content:'';position:absolute;left:0;top:0;width:4px;height:100%;background:#26c4ff;transform:scaleY(0);transition:transform 0.25s cubic-bezier(0.4,0,0.2,1);border-radius:0 2px 2px 0;}.flyout-menu a:hover::before{transform:scaleY(1);}/* Light mode links */body.light-mode .flyout-menu a{color:#1a1a1a !important;}body.light-mode .flyout-menu a::before{background:#0054ff;}body.light-mode .flyout-menu a:hover{background:rgba(0,84,255,0.08) !important;color:#0054ff !important;transform:translateX(4px);}/* Dark mode links */body.dark-mode .flyout-menu a{color:#ffffff !important;}body.dark-mode .flyout-menu a:hover{background:rgba(38,196,255,0.12) !important;color:#26c4ff !important;transform:translateX(4px);}/* Close button - styled differently */.flyout-menu .flyout-close{margin-top:auto;padding-top:16px;border-top:1px solid rgba(255,255,255,0.1);font-size:14px !important;color:#999 !important;opacity:0.8;text-align:center;font-weight:600;}.flyout-menu .flyout-close::before{display:none;}body.light-mode .flyout-menu .flyout-close{border-top:1px solid rgba(0,0,0,0.1) !important;color:#666 !important;}body.light-mode .flyout-menu .flyout-close:hover{opacity:1;color:#1a1a1a !important;background:rgba(0,0,0,0.05) !important;transform:none;}body.dark-mode .flyout-menu .flyout-close:hover{opacity:1;color:#ffffff !important;background:rgba(255,255,255,0.08) !important;transform:none;}/* Custom scrollbar for flyout menu */.flyout-menu::-webkit-scrollbar{width:8px;}.flyout-menu::-webkit-scrollbar-track{background:transparent;}.flyout-menu::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,0.2);border-radius:4px;}body.light-mode .flyout-menu::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.2);}/* Mobile responsive - flyout menu keeps 320px fixed width like dnsai.com/advanced-lookup *//************************************************************* * FLYOUT DRAWER (Accordion) STYLES *************************************************************/.flyout-drawer{margin-top:4px;}.flyout-drawer:first-child{margin-top:0;}.flyout-drawer-toggle{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;min-height:44px;cursor:pointer;transition:all 0.2s ease;border-radius:8px;margin-bottom:0;-webkit-tap-highlight-color:transparent;touch-action:manipulation;}.flyout-drawer-toggle:hover{background:rgba(38,196,255,0.08);}.flyout-drawer-toggle:active{background:rgba(38,196,255,0.15);transform:scale(0.98);}body.light-mode .flyout-drawer-toggle:active{background:rgba(0,84,255,0.15);}.flyout-drawer-toggle .drawer-label{color:#26c4ff;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;}.flyout-drawer-toggle .drawer-arrow{color:#26c4ff;font-size:11px;transition:transform 0.25s ease;opacity:0.7;}.flyout-drawer.open .flyout-drawer-toggle .drawer-arrow{transform:rotate(90deg);}.flyout-drawer-content{max-height:0;overflow:hidden;transition:max-height 0.3s cubic-bezier(0.4,0,0.2,1),opacity 0.2s ease,padding 0.2s ease;opacity:0;padding-top:0;padding-bottom:0;}.flyout-drawer.open .flyout-drawer-content{max-height:500px;opacity:1;padding-top:4px;padding-bottom:8px;}.flyout-drawer-content a{padding:12px 16px 12px 20px !important;min-height:44px !important;font-size:14px !important;margin:0 !important;box-sizing:border-box;-webkit-tap-highlight-color:transparent;touch-action:manipulation;}.flyout-drawer-content a::before{left:4px !important;}.flyout-drawer-content a:active{transform:translateX(4px);}body.dark-mode .flyout-drawer-content a:active{background:rgba(38,196,255,0.18) !important;}body.light-mode .flyout-drawer-content a:active{background:rgba(0,84,255,0.12) !important;}body.light-mode .flyout-drawer-toggle:hover{background:rgba(0,84,255,0.08);}body.light-mode .flyout-drawer-toggle .drawer-label,body.light-mode .flyout-drawer-toggle .drawer-arrow{color:#0054ff !important;}/* Flyout Home Link - styled prominently at top */.flyout-home-link{display:block;color:#ffffff !important;padding:14px 16px;font-size:16px;font-weight:600;text-decoration:none;border-radius:10px;margin-bottom:8px;transition:all 0.25s cubic-bezier(0.4,0,0.2,1);cursor:pointer;line-height:1.3;position:relative;overflow:hidden;border-bottom:1px solid rgba(255,255,255,0.1);padding-bottom:16px;}.flyout-home-link::before{content:'';position:absolute;left:0;top:0;width:4px;height:100%;background:#26c4ff;transform:scaleY(0);transition:transform 0.25s cubic-bezier(0.4,0,0.2,1);border-radius:0 2px 2px 0;}.flyout-home-link:hover::before{transform:scaleY(1);}.flyout-home-link:hover{background:rgba(38,196,255,0.12);color:#26c4ff !important;transform:translateX(4px);}body.light-mode .flyout-home-link{color:#1a1a1a !important;border-bottom:1px solid rgba(0,0,0,0.1);}body.light-mode .flyout-home-link::before{background:#0054ff;}body.light-mode .flyout-home-link:hover{background:rgba(0,84,255,0.08) !important;color:#0054ff !important;}/* Mobile responsive - increase flyout top padding for taller nav */@media (max-width:768px){.flyout-menu{padding-top:90px;}}@media (max-width:480px){.flyout-menu{padding-top:85px;}}/************************************************************* * 5) MODE SWITCH (Dark/Light) *************************************************************/.mode-switch{display:flex;align-items:center;margin:0;}.mode-switch input{display:none;}.mode-switch label{width:35px;height:15px;background:#ccc;border-radius:25px;position:relative;cursor:pointer;margin:0;padding:0;flex-shrink:0;transition:background 0.3s;box-shadow:0 1px 2px rgba(0,0,0,0.2);display:block;}/* Light mode - darker toggle for visibility */body.light-mode .mode-switch label{background:#999 !important;box-shadow:0 1px 2px rgba(0,0,0,0.3) !important;}/* Dark mode - lighter toggle for visibility */body.dark-mode .mode-switch label{background:#666 !important;box-shadow:0 1px 2px rgba(0,0,0,0.5) !important;}.mode-switch label::after{content:'';width:11px;height:11px;background:#fff;border-radius:50%;position:absolute;top:2px;left:2px;transition:transform 0.3s,background 0.3s;box-shadow:0 1px 2px rgba(0,0,0,0.3);}.mode-switch input:checked + label::after{transform:translateX(20px);}/************************************************************* * 6) HEADER & HERO *************************************************************/.header-hero{position:relative;width:100%;height:300px;overflow:hidden;display:flex;align-items:center;justify-content:center;color:white;text-align:center;margin-bottom:0;}.header-hero video{position:absolute;top:0;left:50%;transform:translateX(-50%);width:100%;height:100%;object-fit:cover;z-index:-1;}/* Logo in nav */.nav-logo{max-width:30px;height:auto;}.header-text{display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:1;}/* Title in hero */.header_title{display:flex;align-items:center;justify-content:center;font-size:42px;padding-top:35px;padding-bottom:15px;margin:5px;text-align:center;}.header_title img{vertical-align:middle;max-width:60px;margin-right:12px;}.header_title{display:block;width:100%;text-align:center;font-size:42px;padding-top:35px;padding-bottom:10px;color:white;}.header_subtitle{display:block;width:100%;text-align:center;margin-top:0;}.subtitle-link{font-size:24pt;color:white;text-decoration:none;}.subtitle-link:hover{text-decoration:underline;}/************************************************************* * 7) LAYOUT SECTIONS (TOP/BOTTOM ROWS,QUADRANTS) *************************************************************/.top-row{display:flex;flex-direction:column;gap:20px;width:100%;}.left-column,.right-column{width:100%;}.quadrant1{/* Additional quadrant1 styling if desired */}.right-column .quadrant2{margin-bottom:20px;}/* Disable ad sections if desired;if you re-enable them,they will float right */.ad-container,.ad-body-right{float:right;display:none;/* Changed from inline-block to none to hide the ads *//* display:inline-block;*/ padding:30px;/* Outside spacing */ margin-left:30px;/* Left margin for separation from text */ margin-top:20px;}.ad1{display:none;background:#111;padding:10px;border-radius:8px;}.quadrant3{margin-top:20px;}.bottom-row{display:flex;flex-direction:column;gap:20px;margin-top:20px;width:100%;}.ad2{display:none;background:#111;padding:10px;border-radius:8px;}.body-section-img-wrapper{float:right;display:inline-block;padding:30px;/* Outside padding */ margin-left:30px;/* Left margin for text separation */ margin-top:20px;}.body-section-img{display:inline-block;max-width:300px;width:100%;height:auto;border:1px solid #fff;border-radius:5px;/* No padding here */}/************************************************************* * 8) RESPONSIVE BREAKPOINTS *************************************************************/@media (min-width:768px){.top-row{flex-direction:row;align-items:flex-start;}.left-column{width:calc(65% - 200px);}.right-column{width:calc(35% + 200px);display:flex;flex-direction:column;}.bottom-row{flex-direction:row;}.ad2{width:20%;}.quadrant4{width:80%;}.record-box{max-width:450px;box-sizing:border-box;}}/************************************************************* * 9) FOOTER *************************************************************/.footer{position:relative;bottom:10px;width:100%;text-align:center;font-size:6pt;transition:background 0.3s,color 0.3s;}.footer-link{color:white;text-decoration:none;transition:color 0.3s;}.footer-link:hover{text-decoration:none;color:white;}.light-mode .footer-link{color:black;}/************************************************************* * 10) COMPANY-INFO BLOCK,RECORDS,ETC. *************************************************************/.company-info-block{display:flex;align-items:center;margin-top:15px;}.company-info-block img{width:24px;height:24px;margin-right:8px;}/* DNS Records Section */.dns-records-section{margin-top:20px;padding:20px;background-color:#111;border-radius:8px;}.dns-records-header{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;margin-bottom:20px;}.dns-records-header h2{margin:0;font-size:24px;}.records-grid{display:grid;grid-template-columns:1fr;grid-gap:15px;margin-top:20px;}.record-box{background-color:#222;padding:15px;border-radius:8px;border:1px solid #333;max-width:1050px;box-sizing:border-box;white-space:pre-wrap;word-wrap:break-word;overflow-wrap:break-word;}.record-box h3{margin-top:0;margin-bottom:5px;font-size:16px;color:#40a8ff;}.record-box p{margin:0;padding:0;font-size:13px;line-height:1.4em;}/************************************************************* * 11) BUTTONS & LINKS *************************************************************/.form-input{font-size:12px;width:100%;padding:2px;margin:10px 0;border-radius:5px;border:1px solid #555555;box-sizing:border-box;background-color:#444444;color:white;}.form-input::placeholder{color:#bbbbbb;}button{width:55%;padding:10px;margin:10px 0;border-radius:5px;border:1px solid #555555;box-sizing:border-box;background:linear-gradient(to bottom,#0054FF,#0447D3);color:white;cursor:pointer;transition:background 0.3s;}button:disabled{opacity:0.5;cursor:not-allowed;}button:hover:not(:disabled){background:linear-gradient(to bottom,#0447D3,#0054FF);}.submit-button{background:linear-gradient(to bottom,#0054FF,#0447D3);color:white;border:none;cursor:pointer;transition:background 0.3s;width:auto;margin:5px;}.submit-button:disabled{opacity:0.5;cursor:not-allowed;}.submit-button:hover:not(:disabled){background:linear-gradient(to bottom,#0447D3,#0054FF);}.content a{color:#0054FF;text-decoration:none;}.content a:hover{color:#005FFF;}.record-box{max-width:1025px;}.hidden-honeypot{display:none;}.grecaptcha-badge{visibility:hidden;}/************************************************************* * 12) ADDITIONAL MEDIA QUERIES FOR MOBILE *************************************************************/@media (max-width:768px){.container{max-width:768px;margin:0 auto;padding:15px;}.dns-records-section{font-size:9pt;max-width:100%;}.record-box{font-size:9px;max-width:400px;padding-right:5px;min-width:350px;}.nav-links{display:none;}.nav-search{display:block;width:200px;}.nav-search form input{max-width:135px;}}/************************************************************* * 13) LIGHT MODE OVERRIDES (DNS SECTIONS,SUMMARY BOX,etc.) *************************************************************/.light-mode .dns-records-section{background-color:#f1f1f1;}.light-mode .record-box{background-color:#fff;border:1px solid #ccc;}.light-mode .summary-box{background-color:#f1f1f1 !important;border:1px solid #ccc !important;color:#000 !important;}/************************************************************* * 14) LIGHT MODE:LABEL & VALUE COLOR FIXES *************************************************************/.light-mode .summary-box span[style*="font-weight:bold;font-size:16px;color:#fff;"]{color:#000 !important;}.light-mode .summary-box span[style*="font-size:18px;color:#FC6FCF;"]{color:#a9005f !important;}.light-mode .summary-box span[style*="color:#97B8D5;"]{color:#000080 !important;}.light-mode .summary-box span[style*="color:#D3D212;"]{color:#cc5500 !important;}/************************************************************* * 15) NOTIFICATIONS & NAV EXTRAS *************************************************************/#copyNotification,#shareNotification{display:none;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background-color:#0F1926;color:#fff;padding:12px;border-radius:5px;border:1px solid #97B8D5;}#copyNotification{z-index:1000;}#shareNotification{z-index:1005;}/************************************************************* * 16) NAV-SEARCH FORM *************************************************************/.nav-search{margin-left:0;margin-right:16px;flex-shrink:0;}.nav-search form{display:flex;flex-wrap:nowrap;align-items:center;gap:4px;}.nav-search-input{font-size:12px;width:100%;max-width:135px;padding:6px 10px;border-radius:5px;border:1px solid #555;background:#333;color:#fff;box-sizing:border-box;transition:background 0.3s,color 0.3s,border 0.3s;}.nav-search-input::placeholder{color:#999;}body.light-mode .nav-search-input{background-color:#fff !important;color:#000 !important;border:1px solid #ccc !important;}body.light-mode .nav-search-input::placeholder{color:#888 !important;}body.dark-mode .nav-search-input{background-color:#333 !important;color:#fff !important;border:1px solid #555 !important;}body.dark-mode .nav-search-input::placeholder{color:#999 !important;}.nav-submit-button{background:linear-gradient(to bottom,#0054ff,#0447d3);color:#fff;border:none;border-radius:5px;cursor:pointer;transition:background 0.3s;font-size:12px;padding:6px 12px;white-space:nowrap;}.nav-submit-button:disabled{opacity:0.5;cursor:not-allowed;}.nav-submit-button:hover:not(:disabled){background:linear-gradient(to bottom,#0447d3,#0054ff);}@media (max-width:1024px){.nav-search{display:flex;order:2;margin-left:auto;margin-right:8px;flex-shrink:0;}}/************************************************************* * 17) COPY & SHARE BUTTONS *************************************************************/.copy-button{margin-top:5px;width:50px;float:right;text-align:right;cursor:pointer;font-size:12px;color:#cccccc;border:none;padding:4px !important;background:transparent;outline:none;}.copy-button:hover{border:1px solid #cccccc;background:#000000 !important;}/************************************************************* * 18) SITE FOOTER - CONSOLIDATED *************************************************************/.site-footer{background-color:#000;color:#fff;border-top:1px solid #191919;font-family:Arial,sans-serif;font-size:14px;line-height:1.6;margin-top:60px;width:100%;transition:background-color 0.3s ease,color 0.3s ease;}.footer-top{display:grid;grid-template-columns:1fr 2fr 1fr;gap:40px;max-width:1200px;margin:0 auto;padding:60px 20px 40px;box-sizing:border-box;}.footer-brand{display:flex;flex-direction:column;align-items:center;text-align:center;gap:4px;}.footer-brand-link{display:inline-block;text-decoration:none;transition:transform 0.3s ease,opacity 0.3s ease;}.footer-brand-link:hover{transform:scale(1.05);opacity:0.9;}.footer-logo{max-width:140px;height:auto;margin-bottom:0;display:block;transition:transform 0.3s ease,opacity 0.3s ease;}.logo-title{margin:0;font-size:2rem;line-height:1.2;color:#fff;transition:color 0.3s ease;}.title-section .logo-title .bold{font-weight:700;}.title-section .logo-title .thin{font-weight:300;}.footer-menu{display:flex;flex-wrap:wrap;justify-content:space-around;gap:40px;}.footer-column{flex:1 1 140px;min-width:120px;}.footer-column h4{font-size:1rem;font-weight:600;margin-bottom:12px;color:#fff;}.footer-column ul{list-style:none;margin:0;padding:0;}.footer-column li{margin-bottom:8px;}.footer-column a{color:#fff;text-decoration:none;transition:color 0.3s ease,text-decoration 0.3s ease,transform 0.2s ease;display:inline-block;}.footer-column a:hover,.footer-column a:focus{color:#26c4ff;text-decoration:underline;transform:translateX(2px);outline:none;}.footer-column a:focus-visible{outline:2px solid #26c4ff;outline-offset:2px;border-radius:2px;}.footer-address{display:flex;flex-direction:column;align-items:center;text-align:center;}.footer-address h4{font-size:1rem;font-weight:600;margin-bottom:12px;color:#fff;}.footer-address p{margin:0 0 12px;color:#fff;line-height:1.6;}.footer-address a{color:#fff;text-decoration:none;transition:color 0.3s ease,text-decoration 0.3s ease;display:inline-block;}.footer-address a:hover,.footer-address a:focus{color:#26c4ff;text-decoration:underline;outline:none;}.footer-address a:focus-visible{outline:2px solid #26c4ff;outline-offset:2px;border-radius:2px;}.footer-address .social-icons{display:flex;gap:16px;margin-top:16px;align-items:center;justify-content:center;}.footer-address .social-icons a{display:flex;align-items:center;justify-content:center;transition:transform 0.2s ease,opacity 0.3s ease;text-decoration:none;border-radius:4px;}.footer-address .social-icons a:hover,.footer-address .social-icons a:focus{transform:translateY(-2px);opacity:0.8;outline:none;}.footer-address .social-icons a:focus-visible{outline:2px solid #26c4ff;outline-offset:3px;}.footer-address .social-icons img{width:24px;height:24px;transition:opacity 0.3s ease,transform 0.2s ease;}.footer-address .social-icons img:hover{opacity:0.75;}.footer-bottom{background-color:#191919;text-align:center;padding:20px 10px;border-top:1px solid #333;font-size:13px;color:#fff;transition:background-color 0.3s ease,color 0.3s ease;}.footer-bottom p{margin:4px 0;line-height:1.6;}.footer-bottom a{color:#fff;text-decoration:none;margin:0 8px;transition:color 0.3s ease,text-decoration 0.3s ease;display:inline-block;}.footer-bottom a:hover,.footer-bottom a:focus{color:#26c4ff;text-decoration:underline;outline:none;}.footer-bottom a:focus-visible{outline:2px solid #26c4ff;outline-offset:2px;border-radius:2px;}/* Light mode footer */body.light-mode .site-footer{background-color:#fff !important;color:#000 !important;border-top:1px solid #E6E6E6;}body.light-mode .footer-brand,body.light-mode .footer-logo,body.light-mode .title-section,body.light-mode .logo-title,body.light-mode .footer-column h4,body.light-mode .footer-address h4,body.light-mode .footer-column a,body.light-mode .footer-address a,body.light-mode .footer-address p,body.light-mode .footer-bottom p,body.light-mode .footer-bottom a{color:#000 !important;}body.light-mode .footer-column a:hover,body.light-mode .footer-column a:focus,body.light-mode .footer-address a:hover,body.light-mode .footer-address a:focus,body.light-mode .footer-bottom a:hover,body.light-mode .footer-bottom a:focus{color:#0054ff !important;}body.light-mode .footer-column a:focus-visible,body.light-mode .footer-address a:focus-visible,body.light-mode .footer-address .social-icons a:focus-visible,body.light-mode .footer-bottom a:focus-visible{outline-color:#0054ff !important;}body.light-mode .footer-bottom{background-color:#E6E6E6 !important;color:#000 !important;border-top:1px solid #E6E6E6;}/* Dark mode footer */body.dark-mode .site-footer{background-color:#000 !important;color:#fff !important;border-top:1px solid #191919;}body.dark-mode .footer-column h4,body.dark-mode .footer-address h4,body.dark-mode .footer-column a,body.dark-mode .footer-address a,body.dark-mode .footer-address p,body.dark-mode .footer-bottom p,body.dark-mode .footer-bottom a,body.dark-mode .logo-title{color:#fff !important;}body.dark-mode .footer-column a:hover,body.dark-mode .footer-column a:focus,body.dark-mode .footer-address a:hover,body.dark-mode .footer-address a:focus,body.dark-mode .footer-bottom a:hover,body.dark-mode .footer-bottom a:focus{color:#26c4ff !important;}body.dark-mode .footer-column a:focus-visible,body.dark-mode .footer-address a:focus-visible,body.dark-mode .footer-address .social-icons a:focus-visible,body.dark-mode .footer-bottom a:focus-visible{outline-color:#26c4ff !important;}body.dark-mode .footer-bottom{background-color:#191919 !important;border-top:1px solid #333;}/* Footer responsive styles */@media (max-width:992px){.footer-top{padding:40px 20px 30px;gap:24px;}.footer-column{flex:1 1 120px;}.logo-title{font-size:1.75rem;}}@media (max-width:768px){.footer-top{display:grid;grid-template-columns:1fr;gap:20px;padding:30px 10px 20px;max-width:360px;margin:0 auto;}.footer-menu{display:grid;grid-template-columns:1fr;gap:12px;width:100%;}.footer-column{margin-bottom:0;text-align:center;}.footer-column h4{font-size:0.9rem;margin-bottom:6px;}.footer-column li{margin-bottom:4px;}.footer-address{margin-top:0;}.footer-address h4{font-size:0.9rem;margin-bottom:6px;}.footer-address p{font-size:13px;margin-bottom:6px;}.footer-address .social-icons{gap:8px;margin-top:8px;justify-content:center;}.footer-address .social-icons img{width:20px;height:20px;}.footer-bottom{padding:10px 8px;font-size:12px;}.logo-title{font-size:1.5rem;}}@media (max-width:480px){.site-footer{margin-top:40px;}.footer-top{padding:20px 10px 15px;gap:16px;}.footer-logo{max-width:100px;}.logo-title{font-size:1.25rem;}.footer-column h4{font-size:0.85rem;margin-bottom:4px;}.footer-column li{margin-bottom:3px;font-size:12px;}.footer-address h4{font-size:0.85rem;}.footer-address p{font-size:12px;}.footer-address .social-icons{gap:6px;margin-top:6px;}.footer-address .social-icons img{width:18px;height:18px;}.footer-bottom{padding:8px 6px;font-size:11px;}.footer-bottom a{margin:0 4px;}}/************************************************************* * 19) CONTACT-FORM WRAPPER (for embedded forms/iframes) *************************************************************/.contact-form-wrapper{max-width:600px;margin:1.5rem auto;padding:1rem;border-radius:8px;background-color:#f9f9f9;box-shadow:0 4px 12px rgba(0,0,0,0.1);overflow:hidden;transition:background 0.3s,box-shadow 0.3s;}.contact-form-wrapper iframe{width:100%;min-height:100px;max-height:300px;border:none;border-radius:6px;}/* Dark mode override for contact card */body.dark-mode .contact-form-wrapper{background-color:#1a1a1a !important;box-shadow:0 4px 12px rgba(0,0,0,0.5) !important;}/* Light mode override for contact card */body.light-mode .contact-form-wrapper{background-color:#f9f9f9 !important;box-shadow:0 4px 12px rgba(0,0,0,0.1) !important;}